media_kit_lib_flutter 0.0.0 copy "media_kit_lib_flutter: ^0.0.0" to clipboard
media_kit_lib_flutter: ^0.0.0 copied to clipboard

A Media kit offline library without internet build

example/lib/main.dart

import 'package:flutter/material.dart';


void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> { 

  @override
  void initState() {
    super.initState(); 
  }

  @override
  Widget build(BuildContext context) {
    const textStyle = TextStyle(fontSize: 25);
    const spacerSmall = SizedBox(height: 10);
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Native Packages'),
        ),
        body: SingleChildScrollView(
          child: Container(
            padding: const EdgeInsets.all(10),
            child: const Column(
              children: [
                Text(
                  'This calls a native function through FFI that is shipped as source in the package. '
                  'The native code is built as part of the Flutter Runner build.',
                  style: textStyle,
                  textAlign: TextAlign.center,
                ),
                spacerSmall,
                Text(
                  'sum(1, 2)',
                  style: textStyle,
                  textAlign: TextAlign.center,
                ),
                spacerSmall,
                
              ],
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
140
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A Media kit offline library without internet build

Documentation

API reference

License

MIT (license)

Dependencies

flutter, media_kit_native_event_loop

More

Packages that depend on media_kit_lib_flutter