Categoría: Dev Tools

Categoría agregada por el Plugin WPeMatico

  • Allow for asynchronous and synchronous formatting of phone numbers in Flutter

    flutter_libphonenumber A wrapper around libphonenumber with added functionality merged from the following libs: https://github.com/nashfive/phone_number https://github.com/caseyryan/flutter_multi_formatter Uses the following native libraries: Platform Library Version Android libphonenumber 8.12.10 iOS PhoneNumberKit 3.2.0 The main advantage to this lib is it lets you optionally format a phone number synchronously without making calls into libphonenumber with platform calls. Getting Started First you need to call …

  • A set of useful sliver tools that are missing from the flutter framework

    sliver_tools A set of useful sliver tools that are missing from the flutter framework. Here is a taste what you can make using this package The structure of this app: class Section extends State { @override Widget build(BuildContext context) { return MultiSliver( pushPinnedChildren: true, children: <Widget>[ SliverPersistentHeader( pinned: true, … ), if (!infinite) SliverAnimatedPaintExtent( child: SliverList(…), ) else SliverList(…), ], …

  • A cross-platform port of ShuttleTracker that utilizes the Flutter SDK

    Flutter ShuttleTracker Flutter ShuttleTracker is a cross-platform port of ShuttleTracker that utilizes the Flutter SDK for development. Features Map page that contains live updates for shuttles, routes, and stops Routes page that allows users to see each route in detail and its associated stops Schedules page that directs users to the schedules for all routes Settings page that allows users …

  • Flutter package for prompting users to upgrade

    Upgrader Flutter package for prompting users to upgrade when there is a newer version of the app in the store. When a newer app version is availabe in the app store, a simple alert prompt widget or card is displayed. With today’s modern app stores, there is little need to persuade users to upgrade because most of them are already …

  • Flutter error catching and handling plugin

    Catcher Catcher is Flutter plugin which automatically catches error/exceptions and handle them. Catcher offers mutliple way to handle errors. Catcher is heavily inspired from ACRA: https://github.com/ACRA/acra Catcher is solution for developers which want to get errors informations without using Crashlytics or Sentry product. It’s also great if you have your own backend where you’re storing application logs, so you can …

  • Fledge – A CICD tool for Flutter

    Fledge Automatically build, test, sign and release your Flutter app to both Apple and Google stores. Supports public and private build servers in the cloud (Travis, Cirrus, etc…) and in-house (Jenkins, GitLab, etc…). There are many steps involved each time an app, or an app upgrade, is delivered to both stores. Fledge exists to document and automate these steps. Quick …

  • A resource to help developers evaluate and use Flutter

    Flutter Gallery Flutter Gallery is a resource to help developers evaluate and use Flutter. It is a collection of Material Design & Cupertino widgets, behaviors, and vignettes implemented with Flutter. We often get asked how one can see Flutter in action, and this gallery demonstrates what Flutter provides and how it behaves in the wild. Running Flutter Gallery on Flutter’s …

  • A Flutter application to control the cigarette problem

    Cigarette Control A Flutter application to control the cigarette problem. Google Play : https://play.google.com/store/apps/details?id=com.feragusper.cigarette_control Support If you’ve found an error in this project, please file an issue: https://github.com/feragusper/CigaretteControl/issues Patches are encouraged, and may be submitted by forking this project and submitting a pull request through GitHub. Contribute Pull requests are welcome. Fork it! Create your feature branch: git checkout -b …

  • An IntelliJ plugin for Flutter development

    Flutter Plugin for IntelliJ An IntelliJ plugin for Flutter development. Flutter is a multi-platform app SDK to help developers and designers build modern apps for iOS, Android and the web. Flutter makes it easy and fast to build beautiful mobile apps. Fast development Flutter’s hot reload helps you quickly and easily experiment, build UIs, add features, and fix bugs faster. …

  • Flutter Could Be the Best Solution for Mobile App Development

    It’s common knowledge that Java and Objective C are the major pillars that are used to carry out quality Android and iOS app development. Most developers rely on these programming languages to deliver robust apps to the clients. However, since Flutter came into the picture in May 2017, almost every other developer and app development company has switched to this …

  • What Makes Flutter Ideal For the MVP Development Process?

    Flutter Ideal Flutter platform and a Minimum Viable Product strategy are two elements that have been finding themselves a part of every conversation where time saving mobile app development strategies are discussed. In this article, we are going to look into both of the – now time-tested – approaches together. We will try to establish what makes their combination ideal …

  • 10 Flutter tools to be useful in 2019

    With the holiday season around the corner, we decided to list the 10 most useful Flutter tools that could skyrocket your Flutter projects. Thanks to the active Flutter community and awesome Flutter developers like yourself, there are many tools to choose from. So, dive in to your work with these helpful tools for Flutter and enjoy the holidays. Can’t wait …

  • A Flutter extension to formatting various types of currencies according

    FlutterMoneyFormatter FlutterMoneyFormatter is a Flutter extension to formatting various types of currencies according to the characteristics you like, without having to be tied to any localization. Install For complete steps in installing FlutterMoneyFormatter you can see in the Installation Guide. Usage Import the library import ‘package:flutter_money_formatter/flutter_money_formatter.dart’; Getting Started To be able to format your double value into the various formats …

  • A tool to build Flutter layouts on-device

    MetaFlutter MetaFlutter is a project to create Flutter layouts on device. Learn, explore and experiment with Flutter widgets directly on your phone. MetaFlutter allows you to create Flutter layouts using a wide and constantly growing range of Flutter widgets. Build out an idea you had instantly, try out something you’ve never tried before or just use it as a tool …

  • A debug drawer menu for better development

    flutter_debug_drawer A debug drawer menu for better development. This is an initial release with very few functionalities. Adds a side menu in all screens with debug information. You can decide which information to show and create new modules to include more information. Getting Started Include the last version of the library in your pubspec.yaml: dependencies: flutter_debug_drawer: 0.1.1+1 Now, you can …

  • Integrate Flutter with the Facebook Stetho tool for Android

    flutter_stetho A plugin that connects Flutter to the Chrome Dev Tools on Android devices via the Stetho Android Library. Network Inspector The main feature I was aiming to achieve was a Network Inspector. Getting Started How can you too get this plugin up and running in your own app? Follow these steps. Install the plugin Follow the installation instructions on …