Seed Application for Flutter
This is a Seed Application which helps any Flutter Dev team to create a Flutter app (Android, iOS, Web, Windows, and Linux) from scratch that includes the following features:
- Left Navigation Nodes.
- App Bar, Bottom Toolbar, Slider Controls.
- Push Notifications.
- Authentications (Face ID and Fingerprint).
- Build controls like Button, TextField with custom styling.
Steps:
1. Create a Flutter App:
flutter create AppName
2. To Run the base app:
flutter run
4. Replace main.dart code:
Widget build(BuildContext context) {
return MaterialApp(
home: SplashScreen(
nextScreen: HomeScreen(),
imagePath: 'assets/logo.png',
),
);
}
}
class HomeScreen extends StatelessWidget {
HomeScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(child: Text('Welcome to Home Screen')),
);
}
}