A quiz app built using Flutter

Quiz-App A quiz app built using Flutter. It currently covers programming topics such as (i.e. TypeScript, Angular, Firebase…) and others. Although the topics can be changed by changing the Firestore data for really any other types of quiz. Going with Flutter is a easy choice with its quick development time and fast execution times. Firebase as the backend and storage …

A tween that allow defining keyframes for various properties

keyframes_tween A tween that allow defining keyframes for various properties. Quickstart import ‘package:keyframes_tween/keyframes_tween.dart’; class Example extends StatefulWidget { @override _ExampleState createState() => _ExampleState(); } class _ExampleState extends State<Example> with TickerProviderStateMixin { late final controller = AnimationController( duration: const Duration(seconds: 10), vsync: this, ); final tween = KeyframesTween([ KeyframeProperty<Size>( [ Size(10, 10).keyframe(0), Size(100, 100).keyframe(0.5, Curves.easeInOut), Size(200, 200).keyframe(1.0), ], ), KeyframeProperty<Color>( [ …

A pure dart package to apply useful rate limiting strategies on regular functions

Rate Limiter Rate limiting is a strategy for limiting an action. It puts a cap on how often someone can repeat an action within a certain timeframe. Using rate_limiter we made it easier than ever to apply these strategies on regular dart functions. Installation Add the following to your pubspec.yaml and replace [version] with the latest version: dependencies: rate_limiter: ^[version] …

A Free Crypto Dashboard Flutter UI Kit

Crypto Dashboard Flutter UI Kit Flutter cryptocurrency UI dashboard. Free Flutter UI Kits based on designs on UpLabs Requirements Any Operating System (MacOS, Linux, Windows) Any IDE with Flutter SDK installed (Android Studio, VSCode etc) A little knowledge of Dart and Flutter Author Apps were developed by Olayemi Garuba GitHub https://github.com/olayemii/crypto-dashboard

A Podcast app with Flutter & Redux

Podcast App – Flutter & Redux A Podcast app with Flutter & Redux Preview Introduction I have built a basic podcast app with an interactive UI, as well as some of its functionalities : Like System Multi-word search system. The app currently has 5 screens : Home: With a hard-coded list of podcasts and an integrated search field. The screen …

Exam and training app as social media developed with flutter

Dev Ex (Complete flutter application) Exam and training app as social media, prepared with Firebase backend services, Bloc State management, Singleton design pattern, Unit and widget tests, firebase mocking, Custom local libraries, etc. (Dev Exam) application have been developed with flutter + firebase backaend service. It’s a online exam and learning platform for developers. Features Login, Register, Changing password (with …

Desktop Todo App Build With Flutter

Glory Todo Desktop My goal is to accept my inexperience without worrying about the plugin shortcomings of Flutter Desktop. Creating a simple application to solve my own problems. Because no mission app meets exactly what I need. That’s why I decided to do my best. I would be very happy if you try the first decisions when I reach the …

A Spicy chatting app build with flutter

snack_chat A Chatroom application designed to chat about your favorite snacks with others Firebase Schema: chat_rooms – icon (string) – id (string) – This is the document ID – message (string) – snacks_sent (int) – title (string) chat – chat_icon_color (string) – chatroom_id (string) – message (string) – send_date (timestamp) – user_email (string) – username (string) user – username (string) …

A Flutter App designed based on Nubank Vida

Seguros I was challenged to create an App with only the Nubank life insurance part and fix some UI issues. Flutter This is a Flutter App, designed based on Nubank Vida. Solutions (or almost) Changing the color of the statusbar when the image ends Creating a pattern for navigation between modals Creating patterns in the use of shadows GitHub https://github.com/caiomourasud/seguros

A source flutter template use getx for statemanagement

Flutter Getx Template This is source flutter template use getx for statemanagement ☕ 👀 Overview main.dart, After you can customize languages package, themes, pages and routes import ‘package:flutter/material.dart’; import ‘package:flutter_postman_application/src/lang/translation_service.dart’; import ‘package:flutter_postman_application/src/routes/app_pages.dart’; import ‘package:flutter_postman_application/src/shared/logger/logger_utils.dart’; import ‘package:flutter_postman_application/src/theme/theme_service.dart’; import ‘package:flutter_postman_application/src/theme/themes.dart’; import ‘package:get/get.dart’; import ‘package:get_storage/get_storage.dart’; void main() async { await GetStorage.init(); runApp(GetMaterialApp( debugShowCheckedModeBanner: false, enableLog: true, logWriterCallback: Logger.write, initialRoute: AppPages.INITIAL, getPages: AppPages.routes, locale: …

A package that helps with encoding and decoding of geohashes

georange Georange is a package that helps with encoding geohashes, decoding geohashes,calculating distance between 2 points and generating latitudinal and longitudinal ranges as geohashes to help with the querying of databases (Tested on Firestore Only). Getting Started You should ensure that you add Georange as a dependency in your flutter project. dependencies: georange: <latest-version> You should then run flutter packages …