gun_base 0.0.1
gun_base: ^0.0.1 copied to clipboard
This is optional for your own personal packages, but if you intend to publish your package you must provide a description, which should be in English. The description should be relatively short—60 to [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:gun_base_example/pages/pages.dart';
void main() {
runApp(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: const ExamplePage(),
);
}
}