Autor: atomicflavor

  • Adidas Shoes Ecommerce App UI With Flutter

    Adidas Shoes Ecommerce App UI Adidas Shoes Ecommerce App UI With Flutter. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter samples For help getting started with Flutter, view our online documentation, which offers …

  • Faomus quotes app implemented with Flutter

    Quotesbook Flutter project for Quotesbook mobile app. View Google Play View Github Setup Add lib/environment.dart file with class Environment { static const AUTH_TOKEN = «…»; static const SERVER_HOST = «…»; } Remember to add the google-services.json to the android/app folder. Get this from the firebase project. Add android/key.properties to sign apk/bundle. To generate internationalizations Update the lib/helpers/app_localizations.dart with the new …

  • A game build with Flutter and Flame

    Flutters Flutters is a demo game powered by Flutter and Flame. I wrote it to test out its performance and gaming capabilities and decided to open source it, so you can learn to flutter aswell. Why is a Flutter Game awesome? Apps run on iOS and Android Awesome hot-reloading Compiles to native It is simple to learn Contributing Contributions are …

  • Neumorphic Ui kit for flutter

    neumorphic.flutter Implementation of Neumorphism user interface consisting of sets of principles and widgets for the Flutter framework Getting Started In your flutter project add the dependency: dependencies: neumorphic: any Check out library documentation (latest stable). Api Now implemented some widgets: NeuCard NeuButton NeuSwitch NeuText NeuTextField NeuBackButton NeuAppBar NeuApp NeuCard It is container like a Material merged with Container, but implements …

  • A foods listing app using Flutter

    Feeddy This is a foods listing app, using Flutter. It is a multi screen app with a simple functionality but with a full-on custom styling. Extra Dependencies cupertino_icons: ^1.0.2 intl: ^0.17.0 uuid: ^3.0.4 currency_text_input_formatter: ^2.0.1 date_time_picker: ^2.0.0 rflutter_alert: ^2.0.2 faker: ^1.3.0 fl_chart: ^0.35.0 provider: ^5.0.0 tinycolor: ^1.0.3 font_awesome_flutter: ^9.0.0 audioplayers: ^0.18.3 empty_widget: ^0.0.2 splashscreen: ^1.3.5 native_device_orientation: ^1.0.0 sqflite: ^2.0.0+3 flutter_switch: …

  • A Music Player App made with Flutter

    BlackHole Awesome Music Player made with Flutter! Features Best Streaming Quality (320kbps) Music Search Trending Songs Support 15+ music languages Local and Global Top Spotify songs Add Songs to Favorite Playlists support Sleep timer Lyrics Support Listening history record Dark mode / accent color Download for offline play (320kbps with ID3 tags) Play Online as well as Offline Songs Auto …

  • A geo-tagged video sharing app with flutter

    Spot Spot is a geo-tagged video sharing app, meaning every video recorded in Spot is saved on a location. Anybody can scroll though the map and find the videos recorded in any location in the world. DISCOVER With Spot, you can view what is going on anywhere in the world. All videos in Spot are geo-tagged, meaning they are marked …

  • Rhythm-based mobile game build with flutter

    Hit Notes – Play instruments Rhythm-based mobile game. Even you don’t have any basic knowledge of music instruments, you still can play with falling notes in the game! Main Features Hundreds of songs, from classics of Beethoven, Chopin, Mozart, or Schubert, folk songs to POP/EDM. Will be updated continuously Adjustable difficulty level Adjustable tempo Many game modes Many musical instruments …

  • A clean and modern note taking app built with Flutter

    Notes App A clean, simple and modern note taking app built with Flutter. Be sure to leave a star 🌟 Features Create notes: Create notes that store locally to device. Edit notes: Edit notes that were previously created. Lockable notes (WIP): Lock notes with a password. Pinnable notes: Pin notes to the top of the list. User stats: Stats for …

  • A Genshin Impact database kinda app with flutter

    GenshinDb This app is not affiliated with or endorsed by miHoYo. GenshinDb is just a database app for the Genshin Impact game Features Artifacts Characters Weapons Materials And many more to come Contributing Before contributing, please ask me if whatever you are planning to do / add / improve is valid for this project. You can build and run this …

  • Flutter phone input integrated with flutter internationalization

    phone_form_field Flutter phone input integrated with flutter internationalization. Features Totally cross platform, this is a dart only package / dependencies Internationalization support, without bloated json with all translations. Phone number validation Extends Flutter’s FormField Uses dart phone_numbers_parser for parsing Demo Demo available at https://cedvdb.github.io/phone_form_field/ Usage PhoneFormField( initialValue: phoneNumber, autofocus: true, decoration: InputDecoration( labelText: ‘Phone’, border: OutlineInputBorder(), // … ), onChanged: …

  • Holy Quran Search Engine by Flutter

    114 Holy Quran Search App Searching By Word and getting the Surah & the Ayah where the word is located and how many times the word is repeated in quran. Quick start This app is for Searching By Word and getting the Surah & the Ayah where the word is located and how many times the word is repeated in …

  • An open-source public transport app packed with flutter

    swift_travel This is an open-source public transport app packed with cool features. 🌟 Features 🛣 A beautiful route search and view. 📃 A simple but powerfull timetable. 🤖 AI-powered smart suggestions. ♾ Open-source, add your own country to the app! Guidelines If you want to contribute, fork the repository and create a pull-request with your new feature, and make sure …

  • A platform for creating in-app chat experiences using Flutter

    Flyer Chat Flyer Chat is a platform for creating in-app chat experiences using Flutter. This repository contains Firebase BaaS implementation for Flutter. We are also working on our more advanced SaaS and self-hosted solutions. Actively maintained, community-driven Firebase BaaS for chat applications with an optional chat UI. Getting Started Requirements Dart >=2.12.0 and Flutter >=2.0.0, Firebase project. Read our documentation …

  • Creates a stacked page view animation for flutter pageview

    Stacked Page View Hi! This package will create stacked page view in your flutter app. it’s as lightweight as it can get. Just wrap it between your PageView builder and the iterable children like the code below. PageView.builder( itemCount: 10, scrollDirection: Axis.vertical, controller: pageController, itemBuilder: (context, index) { return StackPageView( controller: pageController, index: index, child: Container( color: (colors..shuffle()).first, child: Center( …