window_utils A new flutter plugin project. Remove MacOS title bar Example import ‘package:flutter/material.dart’; import ‘package:window_utils/window_utils.dart’; void main() => runApp(MyApp()); class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { @override void initState() { WidgetsBinding.instance.addPostFrameCallback( (_) => WindowUtils.hideTitleBar(), ); super.initState(); } @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, ..
Category : Flutter App
WallE Wallpaper App built using Flutter & Unsplash API Story When I created iWallE (which is a CLI wallpaper app), I always wanted to create a wallpaper app for Mobile. I attempted to create it in Native Android but it was not an easy process, and I gave up. After 2 years, I’ve created WallE ..
About SeeFood is a Flutter app that tells you whether a photograph contains any food items or not. See Food ???? ???? This app is highly inspired by and an attempt to recreate something like See Food app created by Jian Yang in Silicon Valley TV Series. How to use it? ???? Add a photo. ..
HackerEarth API Simple and easy-to-use Dart wrapper for HackerEarth API which provides endpoints for compiling and running code in several languages. Usage A simple usage example: // Import this package import ‘package:hackerearth_api/hackerearth_api.dart’; void main() async { // Create instance and supply client_secret obtained from https://www.hackerearth.com/api/register/ HackerEarthApiWrapper hackerEarthApiWrapper = HackerEarthApiWrapper( clientSecret: ‘PUT_CLIENT_SECRET’, ); /** Call makeRequest ..
JoJo ???? ???? CLI utility to check last-visit of your CodeForces friends & much more, ???? powered by CodeForces API Features Online Friends All Friends Prerequisite Dart SDK Setup Clone Add API credentials in config.dart Run Dependencies args crypto http Download JoJo Source Code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection ..
Dexter ???? ???? ViewModel Generator for Flutter, Built using Flutter Demo https://flutter-dexter.surge.sh Screenshots Dependencies provider demoji Contributing Feel free to contribute to the project by creating issues or sending pull-requests. Getting Started A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter ..
About: Flutter plugin for discovering the state of the network (WiFi & mobile/cellular) connectivity on Android and iOS. connectivity This plugin allows Flutter apps to discover network connectivity and configure themselves accordingly. It can distinguish between cellular vs WiFi connection. This plugin works for iOS and Android. Note that on Android, this does not guarantee ..
Photo Search app This macOS application enables you to search Unsplash for photographs that interest you. To use it, you need to add an Access Key from Unsplash API to unsplash_access_key.dart. A quick tour of the code This Flutter project builds a desktop application. It utilises the following desktop specific plugins: file_chooser to enable the ..
Quickly generate a personalized WhatsApp link with a predefined message and share it with your audience on your Social Networks! By clicking on the link your customers will be able to send you a WhatsApp message without having to add your phone number to their contact list. Requirements Any Operating System (ie. MacOS X, Linux, ..
Jagnik A Simple, beautiful and elegant photo Text merging app for your daily Image sharing activities on social media Screens | | | | | | | | | Live App Google Play Store link Download Jagnik Source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Travex This project is a smart tourism application, which focuses on getting users their preferred destinations and hotels in their budget. App Screenshots : Download A Smart Flutter Tourism Application Source code on GitHub https://github.com/ronak197/travex FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Transify An application to translate text either type or fetch text from image and translate in the desired language. Find the translation of the object name captured using the camera in the desired language and find the language spoken in a region by capturing nearby landmarks. App Screenshots : Download Transify Source Code on GitHub ..
Dearly This project is a chat-based application for elderly people to make access to youtube videos, calling (audio/video) easier through a single click of a button. App Screenshots : Download Dearly Source code on GitHub https://github.com/ronak197/Dearly FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Upsplash Unofficial Unsplash client written using dart and flutter Sreenshots Architecture The goal of this pattern is to make it easy to separate presentation from business logic, facilitating testability and reusability. Libraries Architecture flutter_bloc A predictable state management library that helps implement the BLoC design pattern Networking dio A powerful Http client for Dart, which ..
A Flutter plugin to support game center and google play games services. Screenshot iOS Android Usage Sign in: To sign in the user. You need to call the sign in before making any action (like sending a score or unlocking an achievement). GamesServices.signIn(); Show achievements: To show the achievements screen. GamesServices.showAchievements(); Show leaderboards: To show ..
Image utilities for Flutter NetworkImageWithRetry Use NetworkImageWithRetry instead of Image.network to load images from the network with a retry mechanism. Example: var avatar = new Image( image: new NetworkImageWithRetry(‘http://example.com/avatars/123.jpg’), ); The retry mechanism may be customized by supplying a custom FetchStrategy function. FetchStrategyBuilder is a utility class that helps building fetch strategy functions. Features and ..
Flutter Package: This is a mixture of FileImage and NetworkImage. It will download the image from the URL once, save it locally in the file system, and then use it from there in the future. network_to_file_image This is a mixture of FileImage and NetworkImage. It will download the image from the url once, save it ..
Flutter Package: When your desired layout or animation is too complex for Columns and Rows, this widget lets you position/size/rotate/transform its child in complex ways. align_positioned Widgets in this package: AlignPositioned AnimatedAlignPositioned AnimChain Why are these widgets an indispensable tool? When your desired layout feels too complex for Columns and Rows, AlignPositioned is a real ..
Flutter Package: May be used to intercepting the Android back-button, as an alternative to `WillPopScope`. back_button_interceptor In simple cases, when you need to intercept the Android back-button, you usually add WillPopScope to your widget tree. However, when developing stateful widgets that interact with the back button, it’s more convenient to use the BackButtonInterceptor. You may ..
Simply Time Clock Overview Description Simply Time Clock is a Clockface for the Lenovo Smart Clock using Flutter. Made during the Flutter Clock Challenge Product Spec 1. Functionalities It shows time, whether it’s in 24h format or AM/PM It shows the current temperature in celcius or farenheit. It shows the current location. Also, a dark ..
i18n_extension Non-boilerplate Translation and Internationalization (i18n) for Flutter Start with a widget with some text in it: Text(“Hello, how are you?”) Translate it simply by adding .i18n to the string: Text(“Hello, how are you?”.i18n) If the current locale is ‘pt_BR’, then the text in the screen will be “Olá, como vai você?”, the Portuguese translation ..
todog A new Flutter project. UI reference: Todog UI Download Flutter assignment: build a todo app Source Code on GitHub https://github.com/potato16/todog FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Flutter package: Similar to a ListView, but lets you programmatically jump to any item, by index. indexed_list_view Similar to a ListView, but lets you programmatically jump to any item, by index. The index jump happens instantly, no matter if you have millions of items. Limitation: The list is always infinite both to positive and negative ..
Flutter Package: A Redux version tailored for Flutter, which is easy to learn, to use, to test, and has no boilerplate. Allows for both sync and async reducers. async_redux Async Redux is a special version of Redux which: Is easy to learn Is easy to use Is easy to test Has no boilerplate Table of ..
MultiTypeListView A lightweight flutter customer ListView that displays multiple widget types. Screenshot home chat Getting Started dependencies: multi_type_list_view: ^0.1.0 Usage import ‘package:multi_type_list_view/multi_type_list_view.dart’; 1. create a MultiTypeListView and initial with settings @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text(‘MultiTypeListView Demo’), ), body: MultiTypeListView( items: items, // [required]. items in multiple types to ..
flutter_easyloading Installing Add this to your package’s pubspec.yaml file: dependencies: flutter_easyloading: ^1.0.1 Import import ‘package:flutter_easyloading/flutter_easyloading.dart’; How to use first, warp your app widget with FlutterEasyLoading: class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { /// child should be [MaterialApp] or [CupertinoApp]. /// make sure that loading can be displayed in front of all other ..
✨ Flutter Spinkit A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin‘s SpinKit. ???? Installing dependencies: flutter_spinkit: “^4.1.1” ⚡️ Import import ‘package:flutter_spinkit/flutter_spinkit.dart’; ???? How To Use Flutter Spinkit const spinkit = SpinKitRotatingCircle( color: Colors.white, size: 50.0, ); final spinkit = SpinKitFadingCircle( itemBuilder: (BuildContext context, int index) { return DecoratedBox( decoration: BoxDecoration( color: ..
Slidermoji Flutter Slider ???? + Emojis ???? = ???? About Example showcasing the use of Emojis in Slider Widget. Dependencies demoji Contributing Feel free to contribute to the project by creating issues or sending pull-requests. Getting Started A few resources to get you started if this is your first Flutter project: Lab: Write your first ..
Fluid Layout Demo: jamesblasco.github.io/fluid_layout Fluid layouts allow you to create a responsive layout for mobile, web and desktop from a single codebase. Let’s get started Install it Follow the installation process here Understand fluid layout The fluid layout aims to help to build a responsive experience through all the different screen sizes. Based on the ..
Awesome Card A flutter package to create a Credit Card widget in your application. ????Screenshots ⚙️ Installation Import the following package in your dart file import ‘package:awesome_card/awesome_card.dart’; ???????? Usage Use the Awesome Card Widget CreditCard( cardNumber: “5450 7879 4864 7854”, cardExpiry: “10/25”, cardHolderName: “Card Holder”, cvv: “456”, bankName: “Axis Bank”, showBackSide: false, frontBackground: CardBackgrounds.black, backBackground: ..
Custom_Empty widget is a flutter custom widget that is designed to notify a user about some event. https://pub.dev/packages/empty_widget empty_widget Screenshots Screenshots 1. Add library to your pubspec.yaml dependencies: … empty_widget: ^0.0.1-dev.1 # such as version, you need use the latest version of pub. … 2. Import library in dart file import ‘package:empty_widget.dart’; 3. Use of ..
Welcome to Flutter Clock! See flutter.dev/clock for how to get started, submission requirements, contest rules, and FAQs. See a live demo with Flutter for Web! Example Analog Clock Example Digital Clock Download Flutter Clock Source Code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
flutter_svg Draw SVG (and some Android VectorDrawable (XML)) files on a Flutter Widget. Getting Started This is a Dart-native rendering library. Issues/PRs will be raised in Flutter and flutter/engine as necessary for features that are not good candidates for Dart implementations (especially if they’re impossible to implement without engine support). However, not everything that Skia ..
Flutter plugin for Google Analytics for Firebase, an app measurement solution that provides insight on app usage and user engagement on Android and iOS. A Flutter plugin to use the Google Analytics for Firebase API. For Flutter plugins for other Firebase products, see README.md. Usage To use this plugin, add firebase_analytics as a dependency in your pubspec.yaml file. You must ..
Google Maps for Flutter (Developers Preview) A Flutter plugin that provides a Google Maps widget. Developers Preview Status The plugin relies on Flutter’s new mechanism for embedding Android and iOS views. As that mechanism is currently in a developer’s preview, this plugin should also be considered a developers preview. Known issues are tagged with the platform-views and/or maps labels. To use ..
flutter_circle_color_picker A beautiful circle color picker for the Flutter. Light theme Dark Theme Usage … body: Center( child: CircleColorPicker( initialColor: Colors.blue, onChanged: (color) => print(color), size: const Size(240, 240), strokeWidth: 4, thumbSize: 36, ), ), … API /// Called during a drag when the user is selecting a color. /// /// This callback called with ..
Fancy list loading effect or The Shimmer Effect in Flutter Shimmer Effect is really cool placeholder effect that you can show when you are loading data in the form of a list. To do it in flutter we use the dependency called Shimmer. After trying it out I realized that it can be used for ..
Making a fully functional skype clone in a flutter. Skype Clone APP Making a Skype Clone in Flutter – In Progress Check out the course here: THE CS GUY Screenshots Project Structure This project is going to be divided in several different branches. As I release a new video, the content related to that video ..
In this project, I make this UI in a flutter, and also added some functionalities like “Add to Cart” and “Drag to delete” using bloc pattern. Video for UI: Making the Food Delivery App UI in Flutter Video for drag and drop in a flutter : Drag & Drop in Flutter Screenshots Download Food Delivery ..
This repository hosts the complete code for the app UI shown below. It’s built on flutter. Flutter Speed Coding – PIZZA APP UI This repository hosts the complete code of the demo flutter app that I built, recorded and published the recording on youtube. Watch the video Screenshots Download Flutter PIZZA APP UI Source Code ..
