curved_splash_screen

所属分类:绘图程序
开发工具:Dart
文件大小:0KB
下载次数:0
上传日期:2022-08-22 16:36:57
上 传 者sh-1993
说明:  一个闪屏,具有弯曲的自定义底页,其中包含点指示器。,
(A Splash screen with curved custom bottom sheet and dots indicator within it.,)

文件列表:
.metadata (309, 2021-10-26)
CHANGELOG.md (85, 2021-10-26)
LICENSE (1054, 2021-10-26)
example/ (0, 2021-10-26)
example/.metadata (305, 2021-10-26)
example/.vscode/ (0, 2021-10-26)
example/.vscode/launch.json (375, 2021-10-26)
example/android/ (0, 2021-10-26)
example/android/app/ (0, 2021-10-26)
example/android/app/build.gradle (1772, 2021-10-26)
example/android/app/src/ (0, 2021-10-26)
example/android/app/src/debug/ (0, 2021-10-26)
example/android/app/src/debug/AndroidManifest.xml (333, 2021-10-26)
example/android/app/src/main/ (0, 2021-10-26)
example/android/app/src/main/AndroidManifest.xml (2584, 2021-10-26)
example/android/app/src/main/kotlin/ (0, 2021-10-26)
example/android/app/src/main/kotlin/com/ (0, 2021-10-26)
example/android/app/src/main/kotlin/com/example/ (0, 2021-10-26)
example/android/app/src/main/kotlin/com/example/splash_screen/ (0, 2021-10-26)
example/android/app/src/main/kotlin/com/example/splash_screen/MainActivity.kt (130, 2021-10-26)
example/android/app/src/main/res/ (0, 2021-10-26)
example/android/app/src/main/res/drawable/ (0, 2021-10-26)
example/android/app/src/main/res/drawable/launch_background.xml (434, 2021-10-26)
example/android/app/src/main/res/mipmap-hdpi/ (0, 2021-10-26)
example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png (544, 2021-10-26)
example/android/app/src/main/res/mipmap-mdpi/ (0, 2021-10-26)
example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png (442, 2021-10-26)
example/android/app/src/main/res/mipmap-xhdpi/ (0, 2021-10-26)
example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png (721, 2021-10-26)
example/android/app/src/main/res/mipmap-xxhdpi/ (0, 2021-10-26)
example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png (1031, 2021-10-26)
example/android/app/src/main/res/mipmap-xxxhdpi/ (0, 2021-10-26)
example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png (1443, 2021-10-26)
example/android/app/src/main/res/values/ (0, 2021-10-26)
example/android/app/src/main/res/values/styles.xml (951, 2021-10-26)
... ...

Effective Dart Badge MIT License Badge

Pub.dev

# 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 ```dart 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 - Rakib Kowshar


近期下载者

相关文件


收藏者