flutter uikit
the goal of this project is to provide an ultimate collection of real-world app’s uis. while i built flutter uikit for my own needs, it is also intended to showcase good app structure and a clean, well-organized flutter codebase.
the source code is 100% dart, and everything resides in the /lib folder.
this project will try to showcase only the best, most popular and well-designed templates that you will actually need and find useful rather than overwhelming you with a plethora of low-quality ones.
available templates:
templates category | currently available |
---|---|
profile | view profile, profile 2 |
shopping | shopping list, shopping details, product details |
login | login with otp, login 2 |
timeline | feed, tweets |
dashboard | dashboard 1, dashboard 2 |
settings | device settings |
no item | no search result |
payment | credit card, payment success |
building the project
missing key.properties file
if you try to build the project straight away, you’ll get an error complaining that a key.properties
file is missing and exit code 1 from: /flutter-ui-kit-master/android/gradlew app:properties:. to resolve that,
- open rflutter-ui-kit-masterandroidappbuild.gradle file and comment following lines-
//keystoreproperties.load(new fileinputstream(keystorepropertiesfile))
signingconfigs {
// release {
// keyalias keystoreproperties['keyalias']
// keypassword keystoreproperties['keypassword']
// storefile file(keystoreproperties['storefile'])
// storepassword keystoreproperties['storepassword']
// }
}
buildtypes {
// release {
// signingconfig signingconfigs.release
// }
}
- open rflutter-ui-kit-masterandroidlocal.properties and add –
flutter.versionname=1.0.0
flutter.versioncode=1
flutter.buildmode=release
the stack & building from source
the project is currently built using the latest flutter master, with dart 2 enabled.
to build the project, ensure that you have a recent version of the flutter sdk installed. then either run flutter run
in the project root or use your ide of choice.
contribution guide
this project is open to all kinds of contribution in all of its categories. together, we can make it the ultimate flutter uikit available for free, for everyone, forever.
for resource contribution, just follow the following format: [reference-name](link) - description
, and raise a pull request. if you want to contribute multiple resources, raise separate prs for each of them. please consider adding resources maintaining the default sorting order of the category, like alphabetical sorting.
if you have any suggestion for including more categories, feel free to open a github issue for us to have more discussion on it. please do not contribute low-quality, spammy or self-promotional stuff. let’s keep this project clean and useful.
if you feel that a particular resource(s)/template(s) available here is not a good fit for this project and should be removed, feel free to let me know by opening an issue.
found this project useful?
if you found this project useful, then please consider giving it a star on github and sharing it with your friends via social media.
Comments are closed.