custom_text_plugin_flutter 0.0.4 copy "custom_text_plugin_flutter: ^0.0.4" to clipboard
custom_text_plugin_flutter: ^0.0.4 copied to clipboard

Sample flutter plugin

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:sample_plugin_flutter_example/android_view.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();
  }

  // Platform messages are asynchronous, so we initialize in an async method.

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        /*  appBar: AppBar(
          title: const Text('Android View Example'),
        ),*/
        body: AndroidViewExample(),
      ),
    );
  }
}