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:

  1. Left Navigation Nodes.
  2. App Bar, Bottom Toolbar, Slider Controls.
  3. Push Notifications.
  4. Authentications (Face ID and Fingerprint).
  5. 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')),
    );
  }
}