eyflutter_ids 0.0.2 copy "eyflutter_ids: ^0.0.2" to clipboard
eyflutter_ids: ^0.0.2 copied to clipboard

flutter ids

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home.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) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Home(),
      ),
    );
  }
}
0
likes
140
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

flutter ids

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

eyf_cache, eyf_kit, eyf_route, flutter

More

Packages that depend on eyflutter_ids