eyflutter_core 0.0.2+3 copy "eyflutter_core: ^0.0.2+3" to clipboard
eyflutter_core: ^0.0.2+3 copied to clipboard

outdated

EyFlutter基础库

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on:'),
        ),
      ),
    );
  }
}
1
likes
0
points
122
downloads

Publisher

unverified uploader

Weekly Downloads

EyFlutter基础库

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

analyzer, crypto, dartx, flutter, intl, path, provider, uni_links, uuid, xml_parser

More

Packages that depend on eyflutter_core