curved_splash_screen 1.0.0+1 copy "curved_splash_screen: ^1.0.0+1" to clipboard
curved_splash_screen: ^1.0.0+1 copied to clipboard

A Splash screen with curved custom bottom sheet and dots indicator within it. You can add your custom splash screens & change any color of the items of the bottomSheet.

Effective Dart Badge MIT License Badge

Curved Splash Screen #

A Splash screen with curved custom bottom sheet and dots indicator within it.

  • You can add your custom splash screens according to it's index.
  • You can change any color of the items of the bottom sheet.
  • You can specify the text of back and skip button and their color.
  • All items in the bottom sheet is responsive to the screen size.

Image Image Image

Usage #

 class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: CurvedSplashScreen(
          screensLength: splashContent.length,
          screenBuilder: (index) {
            return SplashContent(
              title: splashContent[index]["title"],
              image: splashContent[index]["image"],
              text: splashContent[index]["text"],
            );
          },
          onSkipButton: () {
            print("Ends");
          }),
    );
  }
}

Usage Scenarios #

  • When You like to add Splash or Landing page at the beginning of your application

Inspiration #

62
likes
40
pub points
47%
popularity

Publisher

unverified uploader

A Splash screen with curved custom bottom sheet and dots indicator within it. You can add your custom splash screens & change any color of the items of the bottomSheet.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on curved_splash_screen