Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Flutterscreens | 5,208 | 3 months ago | 15 | mit | Dart | |||||
A collection of Screens and attractive UIs built with Flutter ready to be used in your applications. No external libraries are used. Just download, add to your project and use. | ||||||||||
Fluent_ui | 2,402 | 10 | 8 days ago | 101 | August 17, 2023 | 37 | bsd-3-clause | Dart | ||
Implements Microsoft's WinUI3 in Flutter. | ||||||||||
Flutter Neumorphic | 1,834 | 2 | 2 days ago | 41 | November 11, 2021 | 77 | apache-2.0 | Dart | ||
A complete, ready to use, Neumorphic ui kit for Flutter, 🕶️ dark mode compatible | ||||||||||
Flutter_login | 1,367 | 1 | 3 | 13 hours ago | 30 | August 29, 2023 | 89 | mit | Dart | |
Provides login screen with login/signup functionalities to help speed up development | ||||||||||
Flutterplayground | 1,009 | 6 months ago | 4 | bsd-2-clause | Dart | |||||
Playground app for Flutter | ||||||||||
Flutter_keyboard_actions | 679 | 11 | 4 | 4 months ago | 32 | June 22, 2022 | 19 | mit | Dart | |
Flutter Intro Slider | 653 | 33 | 24 days ago | 60 | June 21, 2022 | 8 | mit | Dart | ||
Simple and configurable app introduction slider for Flutter | ||||||||||
Curved_navigation_bar | 573 | 31 | 7 months ago | 29 | February 08, 2022 | 33 | bsd-2-clause | Dart | ||
Animated Curved Navigation Bar in Flutter | ||||||||||
Introduction_screen | 537 | 9 | 1 | 2 months ago | 22 | March 30, 2022 | 3 | mit | Dart | |
Add easily to your app an introduction screen to provide informations to new users | ||||||||||
Flutter_speed_dial | 367 | 33 | 6 | 4 months ago | 44 | October 14, 2022 | 18 | mit | Dart | |
Flutter plugin to implement a Material Design Speed Dial |
A collection of Login Screens, Buttons, Loaders and Widgets with attractive UIs, built with Flutter, ready to be used in your applications.
A widget that can be used to present two different views that can be toggled using a Floating Action Button. The views toggle with a nice cube-rotation animation.
![]() |
![]() |
![]() |
---|---|---|
![]() |
![]() |
Example #1
FlipLoader(
loaderBackground: Colors.red,
iconColor: Colors.white,
icon: Icons.email,
animationType: "full_flip"),
Example #2
FlipLoader(
loaderBackground: Colors.blueAccent,
iconColor: Colors.orangeAccent,
icon: Icons.subway,
animationType: "half_flip",
rotateIcon: true,
),
Example #3
FlipLoader(
loaderBackground: Colors.green,
iconColor: Colors.white,
icon: Icons.wifi,
animationType: "half_flip",
shape: "circle",
rotateIcon: false,
),
SimpleRoundButton(
backgroundColor: Colors.redAccent,
buttonText: Text("LOGIN",
style: TextStyle(
color: Colors.white
),
),
textColor: Colors.white,
)
SimpleRoundIconButton(
backgroundColor: Colors.orangeAccent,
buttonText: Text("SEND EMAIL",
style: TextStyle(
color: Colors.white
),
),
textColor: Colors.white,
icon: Icon(Icons.email),
)
SimpleRoundOnlyIconButton(
backgroundColor: Colors.blueAccent,
icon: Icon(Icons.phone),
iconAlignment: Alignment.center,
)
Container(
child: LoginScreen1(
primaryColor: Color(0xFF4aa0d5),
backgroundColor: Colors.white,
backgroundImage: new AssetImage("assets/images/full-bloom.png"),
),
)
Container(
child: LoginScreen2(
backgroundColor1: Color(0xFF444152),
backgroundColor2: Color(0xFF6f6c7d),
highlightColor: Color(0xfff65aa3),
foregroundColor: Colors.white,
logo: new AssetImage("assets/images/full-bloom.png"),
),
)
Container(
child: LoginScreen3(),
)
Container(
child: LoginScreen4(
primaryColor: Color(0xff18203d),
secondaryColor: Color(0xff232c51),
logoGreen: Color(0xff25bcbb),
),
)
Container(
child: LoginScreen5(
avatarImage: "path/to/image.png",
onLoginClick: () {
// when login button is pressed
},
googleSignIn: () {
// when google signin button is pressed
},
navigatePage: () {
// change to signup screen
}
),
)
Container(
child: LoginScreen6(
onLoginClick: () {
// when login button is pressed
},
navigatePage: () {
// change to signup screen
}
),
)
Feel free to contribute. If you like the project and want to donate, click here.