Author : Flutterappworld

nft_marketplace Nft marketplace with cool animation. NFt marketplace App Assets credit to dribbble artist :————————-:|:————————-:|:————————-:|:————————-: Screenshots 1 2 3 4 5 6 7 8 :————————-: :————————-: :————————-: :————————-: Download nft_marketplace source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Crate & Barrel – Dark Mobile App Concept Animated An animated flutter UI for E-commerce product variant selection / add to cart developed by nonybrighto and designed by Akram Khalid. Overview Animation Screenshots Screenshots from the developed flutter application Screenshot 1 Screenshot 2 Screenshot 3 Download An animated flutter UI for E-commerce product variant selection source ..

Read more

Taskez A productivity mobile application UI kit built with Flutter Designs and inspiration by Taskez IOS UI kit. Application Flow – Youtube Show some  and star the repo to support the project Screenshots Taskez UI Designs. Download Mobile Application UI kit source code on GitHub https://github.com/Davies-K/Taskez FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

This is the second Iteration of my portfolio website (https://github.com/david-legend/aerium). It is inspired by Julius Guevarra’s Designs on Behance  Forking this repo (please read!) I value keeping my site open source, but as you all know, plagiarism is bad. It’s always disheartening whenever I find that someone has copied my site without giving me credit. I spent ..

Read more

A low-cost Flutter screen adaptation solution (a very low-cost Flutter screen adaptation solution) 100% restore UI, just write according to the width and height of the design drawing Look at the picture first, the standard width is set to 360 iPhone 8 ——————————- iPhone 11 : iPhone 12 pro max ——————— ipad air : android ..

Read more

plasma accent color changer A kde plasma accent color changer that changes some colors in the current colorscheme. 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 ..

Read more

awesome-flutter-desktop A curated list of awesome things related to Flutter desktop. Table of Contents awesome-flutter-desktop Packages Open Source Apps Discussion Contribution Packages Name Repo Description battery_plus Flutter plugin for accessing information about the battery state(full, charging, discharging). biometric_storage Secure Storage: Encrypted data store optionally secured by biometric lock with support for iOS, Android, MacOS. Partial ..

Read more

CCExtractor Flutter GUI The new cross-platform interface is all you need, as it includes all the options. After installing GUI you will have a shortcut in your desktop, this lets users not familiar with CLI to extract subtitles. Usually, you will never need to use all the options (and even if you do, all the ..

Read more

Figma Squircle Flutter implementation of Figma’s corner smoothing. Usage Decoration The SmoothRectangleBorder can be provided to a regular ShapeDecoration with a custom SmoothBorderRadius. Container( height: 100, width: 100, decoration: ShapeDecoration( color: Colors.red.withOpacity(0.75), shape: SmoothRectangleBorder( borderRadius: SmoothBorderRadius( cornerRadius: 10, cornerSmoothing: 0.5, ), ), ), ) Only Each corner can have an independent smoothing and radius. SmoothBorderRadius.only( topLeft: SmoothRadius( cornerRadius: 10, cornerSmoothing: ..

Read more

Day Picker A Flutter widget library that helps us to select days in a week. Screenshot Usage Add day_picker to your pubspec.yaml file. import the package: import ‘package:day_picker/day_picker.dart’; Constructor for the day_picker is given below. SelectWeekDays({ @required this.onSelect, this.backgroundColor, this.daysFillColor, this.daysBorderColor, this.selectedDayTextColor, this.unSelectedDayTextColor, this.border = true, this.boxDecoration, this.padding = 8.0, Key key, }) : assert(onSelect != null), super(key: key); Example here ..

Read more

The Movie DB App with Flutter GetX A new Flutter TheMovieDB Application example with GetX State Management Register and get Api Key from The Movie DB Website After that in url.dart, change ‘YOUR.API_KEY’ with your key. Available in all your devices. Mobile: Desktop: Web: Different Scaffolds for different platforms: Mobile: Desktop: Web: Download Movie DB App source code ..

Read more

Argo Argo is een Magister 6 applicatie met material design. Features Mooie, handige agenda waarin je precies kan zien wanneer je een tussenuur hebt. Een overzichtelijke thuispagina waarop je recente berichten, cijfers en absent-meldingen te zien krijgt. Een handige manier om te berekenen welke cijfer je moet halen voor je volgende toets om nog voldoende ..

Read more

Settings UI for Flutter Installing: In your pubspec.yaml dependencies: settings_ui: ^1.0.1 import ‘package:settings_ui/settings_ui.dart’; Basic Usage: SettingsList( sections: [ SettingsSection( title: ‘Section’, tiles: [ SettingsTile( title: ‘Language’, subtitle: ‘English’, leading: Icon(Icons.language), onPressed: (BuildContext context) {}, ), SettingsTile.switchTile( title: ‘Use fingerprint’, leading: Icon(Icons.fingerprint), switchValue: value, onToggle: (bool value) {}, ), ], ), ], ) Settings UI supports ..

Read more

DayNightSwitch A day night switch widget for Flutter. Installation Add to pubspec.yaml. Usage To use plugin, just import package import ‘package:day_night_switch/day_night_switch.dart’; Example Download Day-Night Switch widget source code on GitHub Implementation guide on Day Night Switch package on pub.dev https://pub.dev/packages/day_night_switch FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Flutter Tab Toggle A Beautiful and Simple Tab/Toggle switch widget. It can be fully customized with desired icons, width, colors, text, corner radius etc. It also maintains selection state. Getting Started In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … flutter_toggle_tab: “^latestVersion” Import it: import ‘package:flutter_toggle_tab/flutter_toggle_tab.dart’; Usage Examples Basic tab/toggle switch // Here ..

Read more

flutter_advanced_switch An advanced switch widget, that can be fully customized with size, text, color, radius of corners. Switch OFF State Switch ON State Getting Started In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … flutter_advanced_switch: <latest_version> Import in your project: import ‘package:flutter_advanced_switch/flutter_advanced_switch.dart’; Examples Regular Switch final _controller = AdvancedSwitchController(); // … AdvancedSwitch( controller: ..

Read more

xlive_switch A Xlive Switcher plugin for Flutter Getting Started This plugin is based on Oleg Frolov’s animation design which I found on Dribbble: https://dribbble.com/shots/5429846-Switcher-XLIV Thanks Oleg Forlov for this beautiful design. Usage To use plugin, just import package import ‘package:xlive_switch/xlive_switch.dart’; You can change the color of the switch follow by these attributes: activeColor: background color when value ..

Read more

ListTileSwitch ListTileSwitch is a simple widget that combines ListTile with a switch. Offering 3 types of switch widgets: Switch: Material Switch from Material library on Flutter SDK. CupertinoSwitch: CupertinoSwitch from Cupertino library on Flutter SDK. A custom switch. Tested on Android and Web but not iOS. Theoritacially it should work on iOS devices too, since this package contains nothing ..

Read more

DayNightSwitcher Just a simple day / night switcher widget made in pure Dart. It allows you to quickly show a beautiful dark mode switcher widget to your users. How to use ? Using this plugin is pretty straightforward. You have two widgets : DayNightSwitcher and DayNightSwitcherIcon. Here’s a sample code for DayNightSwitcher : DayNightSwitcher( isDarkModeEnabled: isDarkModeEnabled, onStateChanged: (isDarkModeEnabled) { setState(() ..

Read more

custom_switch Beautiful Custom Switch package created with Flutter. The source code is 100% Dart, and everything resides in the /lib folder. Show some  and star the repo to support the project  Installation In the dependencies: section of your pubspec.yaml, add the following line: custom_switch: <latest_version> Import in your project: import ‘package:custom_switch/custom_switch.dart’; Basic Usage class HomeScreen extends StatefulWidget { @override _HomeScreenState createState() => ..

Read more

flutter_switch An easy to implement custom switch created for Flutter. Give it a custom height and width, border for the switch and toggle, border radius, colors, toggle size, a choice to display an ‘On’ and ‘Off’ text and able to add an icon inside the toggle. Demo Video version: https://youtu.be/JqJnxjE6Efc Use this package as a library ..

Read more

Slider Button This package provides an easy implementation of a Slider Button to cancel current transaction or screen. Highly customizable iphone alike looking widget. How to use Type 1 This is a Circle type widget. You just need to define the border radius to swap between rectangle and circle type widget. import ‘package:slider_button/slider_button.dart’; Center(child: SliderButton( ..

Read more

lite_rolling_switch Full customable rolling switch widget for flutter apps based on Pedro Massango’s ‘crazy-switch’ widget https://github.com/pedromassango/crazy-switch About Custom Switch button with attractive animation, made to allow you to customize colors, icons and other cosmetic content. Manage the widget states in the same way you do with the classical material’s switch widget. NOTE: Currently, you cannot directly ..

Read more

just_the_tooltip A nice, small package for when you need a tooltip. Getting Started Insert this into your yaml: just_the_tooltip: <latest_version> just_the_tooltip gives you more flexibility over the Flutter standard Tooltip by allowing you to set arbitrary content. It also expands upon their single axis layout algorithm to fit both vertically and horizontally. The tooltip can be positioned along ..

Read more

CS:GO Tournament App An App where all the details about a tournament can be found. Features User Side Players can Register for the tournament through the App itself. Users can Sign-in Anonymously. Users can see the Match Schedule on the App. Users can watch Match details (including time, score, winner team, MVP etc) Users can ..

Read more

In Short: The Flutter 2.5 release has the Performance improvements, DevTools updates, new Material You support, a new app template, and more! Hello and welcome to Flutter 2.5! This is a big release, with the 2nd highest stats in the history of Flutter releases: 4600 issues closed and 3932 PRs merged from 252 contributors with ..

Read more

ListTileSwitch ListTileSwitch is a simple widget that combines ListTile with a switch. Offering 3 types of switch widgets: Switch: Material Switch from Material library on Flutter SDK. CupertinoSwitch: CupertinoSwitch from Cupertino library on Flutter SDK. A custom switch. Tested on Android and Web but not iOS. Theoritacially it should work on iOS devices too, since this package contains nothing ..

Read more

Official Flutter packages for Stream Chat Quick Links Register to get an API key for Stream Chat Flutter Chat SDK Tutorial Chat UI Kit Sample apps This repository contains code for our Dart and Flutter chat clients. Stream allows developers to rapidly deploy scalable feeds and chat messaging with an industry leading 99.999% uptime SLA guarantee. Sample apps and demos Our ..

Read more

Visit Nepal : Tourism app made with Flutter and Django This is an app that gives you information about all the things that make Nepal breathtaking. Features : Fetch data from a GraphQl Server. Data collected via web-scraping with Python. Navigate to a specific location via Google Maps Dynamic Theming using Provider Beautiful UI To run ..

Read more

analytics_events_gen An easy generator for tracking firebase analytics events via type safe methods. Add to pubspec.yaml Check pub for the latest version:  dependencies: # … analytics_event_gen: 0.1.0 dev_dependencies: # include build_runner, only used for code generation. build_runner: ^1.6.5 Create AnalyticsEvents class: // analytics.dart import ‘package:analytics_event_gen/analytics_event_gen.dart’; // this file will be generated. part ‘analytics.g.dart’; class MyAnalyticsBloc ..

Read more

SMHI Open Data for Dart A Dart package for usage of the Swedish Meteorological and Hydrological Institute’s Open Data API. The API allows you to get the weather and other meterological data like air temperature & pressure. At the time of writing this, the Meteorological Forecasts API is available in the following countries: Sweden Norway Finland ..

Read more