Category : Flutter App

Contacts Building App Contacts in Flutter using Slidy Screenshots Getting Started For help getting started with Flutter, view our online documentation. License This project is licensed under the MIT License – see the LICENSE file for details. Download Flutter Contacts App source code on GitHub https://github.com/RogerioSobrinho/Flutter-ContactApp FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. ..

Read more

contacts_service A Flutter plugin to access and manage the device’s native contacts. Usage To use this plugin, add flutter_contact as a dependency in your pubspec.yaml file.For example: dependencies: flutter_contact: ^0.4.15 Permissions Android Add the following permissions to your AndroidManifest.xml: <uses-permission android:name=”android.permission.READ_CONTACTS” /> <uses-permission android:name=”android.permission.WRITE_CONTACTS” /> iOS Set the NSContactsUsageDescription in your Info.plist file <key>NSContactsUsageDescription</key> <string>Your description of why you are requesting permissions.</string> Noteflutter_contact does not ..

Read more

local_cache_sync A very simple and easy-to-use Flutterlocal repository, suitable for storing a list of lightweight data locally (such as device information stored locally by the user, or caching a series of user information). local_cache_syncAll methods are synchronous , not asynchronous . This means that you don’t need to use awaitit to get the data. Among them flutter, this can significantly reduce StatefulWidgetthe number and greatly ..

Read more

progresshud A handy Hud framework is implemented by Flutter calling native code, including loading (default), success, error, info and other styles. You can call up Hud anywhere and control its hiding in one line of code. In the sample app, you can see how to use it. Use SVProgressHUD on iOS and SVProgressHUD-Android on Android (this ..

Read more

flutter_tiktok A flutter app that imitates vibrato. Mainly realized the function of watching video Implement function Swipe the video up and down, the video will automatically load the cover Swipe left and right to search and personal center Double click to love and like See comments Switch bottom Tabbar Application screenshot detail Adapted to different screen ..

Read more

With cupertino_setting_control you can create a settings page or a simple form very easy. Therefore, cupertino_setting_control offers multiple Cupertino-Widgets which can be used very flexible and abstracted. Quick Usage A few examples: Example for a drop down widget displayed as text field: new SettingRow( rowData: SettingsDropDownConfig( title: ‘Search Area’, initialKey: _searchAreaResult, choices: { ‘Germany’: ‘Germany’, ..

Read more

Cupertino buttons which are used as radio buttons in order to select one value. Tutorial A complete tutorial how to use CupertinoRadioChoice can be found here: Tutorial Quick Usage Just fill the required parameters of CupertinoRadioChoice and you’re ready to go, e.g.: CupertinoRadioChoice( choices: {‘male’ : ‘Male’, ‘female’ : ‘Female’, ‘other’: ‘Other’}, onChange: (selectedGender) {}, initialKeyValue: ‘male’) Please refer to ..

Read more

Flutter Firebase Picture Uploader This library offers a Picture Upload widget which can be used to upload one or multiple images to your Firebase Storage. With this library the following is possible: Upload one or multiple images via PictureUploadWidget Delete images via PictureUploadWidget Multiple customization options (font size, text, color, etc.) Custom upload or download methods possible ..

Read more

Flutter Bidirectional ListView ListView with items that can be scrolled in both directions with a fixed item count and scroll boundaries. With this library the following is possible: ListView can be scrolled in up (negative indices) and down (positive indices) direction Lazy loading is possible for up and down direction Scroll boundaries for top and ..

Read more

pakistan_vd A new Flutter project. 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 tutorials, samples, guidance ..

Read more

dept_emp_data A new Flutter project. 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 tutorials, samples, guidance ..

Read more

qr_scan_code A new Flutter project. 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 tutorials, samples, guidance ..

Read more

Conic Clock Conic Clock is a dynamic clock written in Flutter. It is a project by me (ZHENG HAOTIAN / Justin Fincher) for the Flutter Clock challenge. The conic shadow angle represents seconds. On the top left and bottom right there are hour and minute indicators, while on top right there is the weather and bottom ..

Read more

flutter_show_more_text_popup Flutter widget to show text in popup or overlay container Installation Add this to your package’s pubspec.yaml file dependencies: … show_more_text_popup: ^latest-version Usage First import show_more_text_popup.dart import ‘package:show_more_text_popup/show_more_text_popup.dart’; ShowMoreTextPopup popup = ShowMoreTextPopup(context, text: text, textStyle: TextStyle(color: Colors.black), height: 200, width: 100, backgroundColor: Color(0xFF16CCCC)); popup.show( widgetKey: key, ); Screenshots Download text popup widget source code ..

Read more

covid19 Monitoring Covid. Download APK Resource Rest API Kasus Corona API Provider http intl flutter_datetime_picker url_launcher Download Covid19 flutter app source code on GitHub https://github.com/hifiaz/covid19 FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Alqurani This app has release in google play, free Google Play Features List of Surah Translate of surah Tafsir of surah List of daily du’a Contribute You can contribute to this project, this made with flutter all resource is MIT license. requires : Flutter. Todo: Asmaul husna Highlight surah/ayah Bookmark surah Local notification Prayer schedule Kiblah ..

Read more

exampletododevindo A new Flutter project. 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 tutorials, samples, guidance ..

Read more

country list pick Flutter plugin to pick country with output name, code, dialcode and flag of country Usage To use this plugin, add country_list_pick as a dependency in your pubspec.yaml. CountryListPick( // to show or hide flag isShowFlag: true, // true to show title country isShowTitle: true, // true to show code phone country isShowCode: true, // to ..

Read more

Jaadoo A new Flutter Web project. This is the only way to call jaadoo to do your job..LOL Jaaadoo won’t come, said first make this responsive on browsers. Can you make it ? Download Jaadoo source code on GitHub https://github.com/1-2-ka-4-4-2-ka-1/Jaadoo FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

context_extentions Getting inherited widget’s state var themeData = context.theme; var scaffold = context.scaffold; var navigator = context.navigator; var overlay = context.overlay; var mediaQuery = context.mediaQuery; Theme properties var textTheme = context.textTheme; var colorPrimary = context.primaryColor; var colorAccent = context.accentColor; var colorCanvas = context.canvasColor; var colorBackground = context.BackgroundColor; Navigator helpers context.push((c) => NaxtPage()); context.pop(); MediaQuery properties ..

Read more

Loader Sometimes you need to load some data before building your widget. Because initState doesn’t support asynchronous loading you need to find another way to load your data. The most common way of loading data is using a FutureBuilder but FutureBuilders are tedious. Another way is using flags to rebuild the widget after all the loading is done. Loader ..

Read more

FSwitch An interesting and practical switch component. Supports setting tips, slider decorations, shadows, and good interaction. Author:Newton(coorchice.cb@alibaba-inc.com) English | 简体中文 Like it? Please cast your Star  !  Features Support opening and closing tips Support setting decoration for Slider Support flexible configuration available state More sense of space Shadow Good switch interactive experience  Guide  Parameters Param Type Necessary Default desc open ..

Read more

FButton From then on, developers only need to master one Button component, which is enough. Support rounded corners, borders, image, special effects, loading mode. Author:Newton(coorchice.cb@alibaba-inc.com) English | 简体中文 Like it? Please cast your Star  !  Features Rich corner effect Exquisite border decoration Gradient effect Flexible icon support Intimate Loading mode Cool interaction Special effects More sense of space Shadow  Guide  Parameters  Basic parameters Param Type Necessary Default desc onPressed VoidCallback ..

Read more

fradio A radio component suitable for almost any radio scenario. Supports excellent interactive special effects, as well as a simple multi-interactive state view switching construction like eating a hamburger . You will fall in love with TA .️ Author:Newton(coorchice.cb@alibaba-inc.com) English | 简体中文 Like it? Please cast your Star  !  Features Wonderful interactive animation Support precise control of rounded corners Wonderful ..

Read more

ffloat FFloat, although simple and easy to use, can satisfy all your imagination of the floating layer. Born and elegant, supporting precise position control. Triangles with rounded corners, borders, gradients, shadows? Everything you need .️ Author:Newton(coorchice.cb@alibaba-inc.com) English | 简体中文 Like it? Please cast your Star  !  Features Supports floating layer position control based on anchor elements Convenient floating layer show / hide ..

Read more

frefresh Help you to build pull-down refresh and pull-up loading in the simplest way. Although unprecedented simplicity, but the effect is amazing. It also supports configuration refresh and loading elements. The complete controller allows you to help you control the entire dynamic process. Author:Newton(coorchice.cb@alibaba-inc.com) English | 简体中文 Like it? Please cast your Star  !  Features  Guide  Parameter & ..

Read more

flutter_rich_input This is a high performance rich media input box, implemented through the native textfield extension, with less disruptive, but at the same time has a strong extensibility, implements the @ someone, # topics, expressions and other functions, support custom color highlighting Language: English | 中文简体 Special feature Use native textfield capabilities with less code, less disruption and ..

Read more

flutter_link_preview This is a URL preview plugin that previews the content of a URL Language: English | 中文简体 Special feature Result caching and expiration mechanism for faster return of results Better fault tolerance, multiple ways to find icons Better support for Chinese, no garbled code Support GIF and other image previews Getting Started Result: You can also use ..

Read more

Todo – Simple & Beautiful  A minimal Todo mobile app made using Flutter. Key Features • How To Use • Download • Credits • Key Features Easily add and remove tasks Organize tasks under categories. editing. Personalize task category using color and icon. How To Use To clone and run this application, you’ll need Git and Flutter installed on your computer. From your command line: # Clone ..

Read more

flutter_calendar_carousel Calendar widget for flutter that is swipeable horizontally. This widget can help you build your own calendar widget highly customizable. Now you can even add your icon for each event. New Feature Check out great feature customDayBuilder work done by maxgmer . Rectangular style Circular style No border Marked Dates Custom Icon Events Getting Started For help getting ..

Read more

flutter_inapp_purchase Sun Rise  Since many one of you wanted me to keep working on this plugin in #93, I’ve decided to keep working on current project. I hope many one of you can help me maintain this. Thank you for all your supports in advance . What this plugin do This is an In App Purchase plugin for flutter. ..

Read more

walls Your phone wallpaper is a great way to express your unique personality. Walls is a wallpaper service app without any Ads. Beautiful, free photos. Gifted by the world’s most generous community of photographers. • Browse over 1,200,000+ HD photos • New wallpapers every week • Automatically refresh your home screen with a new random ..

Read more

http_services A package to support the creation of Http services in a Dart application. Features convenient methods to perform HTTP requests disposing a service will cleanup any pending requests, in order to avoid unwanted resources waste! convenient models to have a standard for request and response objects RequestBase Every request should extend RequestBase and implement its overrides: ..

Read more

toml_localizations A minimal TOML localization package for Flutter. Usage See example. Install Add to your pubspec.yaml dependencies: toml_localizations: Add a TOML file per language Add a TOML file per language you support in an asset path and describe it in your pubspec.yaml flutter: assets: – {path}/{languageCode}.toml Example TOML file str = “The quick brown fox jumps over the lazy dog.” literal_str = ..

Read more

Intl Phone Number Input A simple and customizable flutter package for international phone number input CustomDecoration CustomBorder Default What’s new Features String phoneNumber = ‘+234 500 500 5005’; PhoneNumber number = await PhoneNumber.getRegionInfoFromPhoneNumber(phoneNumber); String parsableNumber = number.parseNumber(); `controller reference`.text = parsableNumber Note onInputChanged(PhoneNumber value) { setState((){}); } Calling setState inside onInputChanged and onInputValidated causes the ..

Read more

Info: Observable Pattern is a pattern that use a class to hold a value to manage changes to dispatch notification for every streams. Observable Pattern Observable class //This is how initialize the observable class that holds a value and listen to changes and automatically close it’s stream inside Observer Widget. //you don’t need to pass ..

Read more