aatkit_flutter_plugin 1.2.2 copy "aatkit_flutter_plugin: ^1.2.2" to clipboard
aatkit_flutter_plugin: ^1.2.2 copied to clipboard

Flutter plugin for AATKit

example/lib/main.dart

import 'package:aatkit_flutter_plugin_example/pages/home_page.dart';
import 'package:aatkit_flutter_plugin_example/pages/list_page.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      routes: {
        HomePage.route: (_) => const HomePage(),
        ListPage.route: (_) => const ListPage(),
      },
    );
  }
}
2
likes
130
points
106
downloads

Publisher

verified publishergravite.net

Weekly Downloads

Flutter plugin for AATKit

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, json_annotation, plugin_platform_interface

More

Packages that depend on aatkit_flutter_plugin