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 …

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 …

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: …

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( …