Chromicle/awesome-flutter-ui
awesome flutter(android, ios) UI examples :zap: - login, books, profile, food order, walkthrough, widgets
repo name | Chromicle/awesome-flutter-ui |
repo link | https://github.com/Chromicle/awesome-flutter-ui |
homepage | |
language | Dart |
size (curr.) | 14923 kB |
stars (curr.) | 122 |
created | 2020-05-10 |
license | MIT License |
Flutter UI/UX Examples π
Looking for an awesome UI kit for Flutter? Here is a curated list of a few awesome Flutter UI/UX Examples.
Show some β€οΈ and star the repo to support the project
Index π
1. Login Page UI π¦
GIF | Screenshot |
---|---|
Packages in use:
Fonts
2. Books app UI π¨
GIF | Screenshot |
---|---|
Packages in use:
Fonts
3. Profile Page UI π§
GIF | Screenshot |
---|---|
Packages in use:
Fonts
4. Food Order app π
GIF | Screenshot |
---|---|
Packages in use:
5. Walkthrough Screen π
This is a little special… Guess what?
I implemented this in Kotlin! π±
This is the walk-through screen, that you can adapt according to your use, by changing images and number of screens. The top slider will scroll on any amount of screens you add!
GIF | Screenshot |
---|---|
Resources:
- Animations: cubic briezer
- Primary color: #6C63FF
- Images: undraw.co
Fonts
- Poppins
Widgets :rocket:
List of well-designed widgets that you will actually need and find useful rather than overwhelming you with a plethora of low-quality ones.
Index π
1. Rounded Input field π¦
GIF
Use
RoundedInputField(
textEditingController: controllerName,
hintText: "Your Email",
icon: Icons.email,
cursorColor: Colors.black,
editTextBackgroundColor: Colors.grey[200],
iconColor: Colors.black,
onChanged: (value) {
name = value;
},
)
2. Flushbar alert service
To use this widget you have to include one denpendency called flushbar in your pubspec.yaml
, if you want error alert you have to give AlertType.error
in type feild same applies to warning
GIF
Use
CustomButton(
text: "Add to Cart",
onPressed: () {
AlertService().showAlert(
context: context,
message: 'product has been added to cart',
type: AlertType.success,
);
},
)
Designs πΈ
These are the list of designs made by adobe xd and figma etc
Index π
Camera UI π·
Doremon π±
Any doremon fans here? For relaxation I design some of cartoons
Author(s) βοΈ
Looking to contribute? :computer:
Please read CONTRIBUTING.md before writing a pull request. Any and all help we can get is welcome :)
License :memo:
This repository is licensed under MIT License. Find LICENSE to know more.
Note
These examples are open to all kinds of contribution in all of its categories. dude, they are completely freeπ
If you found this project useful, then please consider giving it a :star: on Github and sharing it with your friends via social mediaβ‘.
Happy Coding π».