flutter_progress Highly customizable and light weight progress library including dynamic updates Getting Started Adding the package dependencies: flutter_progress: ^1.0.0 Examples Normal Progress Valuable Progress Custom Body Progress Custom Progress How to use Add import import ‘package:flutter_progress/flutter_progress.dart’; Show dialog and assign it a global key to update it later. All properties except the message are optional. ..
Category : Graphics
Composition Rendering A graphics engine for creating 2D games. Composition Rendering is not a game engine. This solution can be used as part of a third-party game engine. The functions of creating game scenes and managing graphic objects in the action scene are at your disposal. Object rendering is optimized to minimize the number of ..
GraphView Get it from Flutter GraphView is used to display data in graph structures. It can display Tree layout and Directed graph. Overview The library is designed to support different graph layouts and currently works excellent with small graphs. You can have a look at the flutter web implementation here: http://graphview.surge.sh/ Layouts Tree Uses Walker’s algorithm ..
Emojis Emoji for Dart Over 3300 EmojisThis contain all Unicode 13 Emojis (2️0️2️0️) Usage Import import ‘package:emojis/emojis.dart’; // to use Emoji collection import ‘package:emojis/emoji.dart’; // to use Emoji utilities Use print(‘I ${Emojis.greenHeart} ${Emojis.directHit}’); // I 💚 🎯 Emoji smile = Emoji.byName(‘Grinning Face’); // get a emoji by its name print(‘Emoji name : ${smile.name}’); // Emoji name is Grinning Face ..
peek_and_pop Peek & Pop implementation for Flutter based on the iOS functionality of the same name. Finally, the v1.0.0 release! More fluent, more optimized and more beautiful than ever. Very customizable and very easy to use. It is highly recommended to read the documentation and run the example project on a real device to fully ..
cupertino_stackview A very easy-to-use navigation tool/widget for having iOS 13 style stacks. It is highly recommended to read the documentation and run the example project on a real device to fully understand and inspect the full range of capabilities. Media | Description | Installation | How-to-Use Media Watch on Youtube: Description The “StackView” system, as ..
SpaceX GO! Simple yet powerful, open-source SpaceX launch tracker About the project The purpose of this project is to develop the ultimate SpaceX experience in a variety of platforms. A single experience, from a single codebase. From the start, SpaceX GO! has been developed to be light-weight, fast and easy to use. It takes all ..
flutter_turtle flutter_turtle is a simple implementation of turtle graphics for Flutter. It simply uses a custom painter to draw graphics by a series of Logo-like commands. For further information about turtle graphics, please visit Wikipedia: https://en.wikipedia.org/wiki/Turtle_graphics https://en.wikipedia.org/wiki/Logo_(programming_language) Why I make this? It is always fun to make your own DSL! Example A quick example: @override ..