Category : Framework

arowana A lightweight HTTP server framework for Dart.It is based on the shelf library for handling HTTP requests and implements a high-performance routing with reference to Golang’s Gin framework. Usage A simple usage example: import ‘dart:isolate’; import ‘package:arowana/arowana.dart’; class MyAChannel extends DefaultChannel{ @override Future prepare() { print(‘current isolate [${Isolate.current.debugName}]’); return super.prepare(); } @override void entryPoint() { get(‘/hello’, ..

Read more

Rapid Open Hardware Development (ROHD) Framework About: The Rapid Open Hardware Development (ROHD) framework is a framework for describing and verifying hardware in the Dart programming language. ROHD enables you to build and traverse a graph of connectivity between module objects using unrestricted software. This package developed and maintain by Intel Corporation and Flutter developers. ..

Read more

DChisel Dart Framework DChisel is simple Dart Framework for creating REST API Features Custom host server and port GET, POST, PUT, DELETE, PATCH Routes ORM CRUD to PostgreSQL Usage To add the dchisel to your Dart application read the install instructions. Host Server Default host is “localhost” and port 8000 import ‘package:dchisel/dchisel.dart’; Future<void> main(List<String> arguments) async { ..

Read more

Shark Flutter  (Official) A Flutter server rendering framework What it is Shark is a server rendering framework, a server-driven UI framework. Simple use case of shark Let say you have a text widget, you specify it as json on the server return to the client, the client use shark to receive the text widget and show the UI ..

Read more

VelocityX is a 100% free Flutter open-source minimalist UI Framework built with Flutter SDK to make Flutter development easier and more joyful than ever. Demo App Inspired from Tailwindcss and SwiftUI. “Welcome to VelocityX”.text.white.xl4.bold.center.makeCentered().box.roundedLg.red500.shadow2xl.make().whHalf(context).centered(); Getting started In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … velocity_x: <latest_version> In your library add the following import: import ‘package:velocity_x/velocity_x.dart’; ..

Read more

AspectD Salute to AspectJ. AspectD is an AOP(aspect oriented programming) framework for dart. Like other traditional aop framework, AspectD provides call&execute grammar. Besides, as we can’t use dart:mirrors in flutter, AspectD also provides a way named inject enhancing the dart code manipulation. Besides, AspectD provides a dill transformer container above which developers can implement their ..

Read more

flutter_flux A Dart app architecture library with uni-directional data flow inspired by RefluxJS and Facebook’s Flux. This is an experimental package and does not have official support from the Flutter team. However, feedback is most welcome! Overview What’s Included Action Store FluxComponent Examples External Consumption Overview flutter_flux implements a uni-directional data flow pattern comprised of Actions, Stores, and StoreWatchers. It is based ..

Read more

Auto Auto-A simpler Flutter UI automation test solution. No need to write any code Recording test scripts is very simple Multi-platform support Pixel-level playback Remote recording and playback … Getting Started 1.Add Dependency dependencies: auto: latest-version 2.Initialize UIAutomator import ‘package:auto/auto.dart’; void main() { UIAutomator.ensureInitialized(); //Make sure this line is at the top of the code ..

Read more

Queen Palace 🏰👑 Introduction server side dart micro-framework to handle incoming http requests hello world app Future<void> main(List<String> args) async { final palace = Palace(); palace.get(‘/greet_the_queen’, (req, res) => res.send(‘Long Live The Queen 👑’)); await palace.openGates(); } hello world with decoration decoration will help you split your code to parts or modules easily making the ..

Read more

README.md Responsive Framework Responsiveness made simple Responsive Framework adapts your UI to different screen sizes automatically. Create your UI once and have it display pixel perfect on mobile, tablet, and desktop! The Problem Supporting multiple display sizes often means recreating the same layout multiple times. Under the traditional Bootstrap approach, building responsive UI is time consuming, frustrating ..

Read more

Official CLI for the GetX™ framework. This CLI is in Beta stage, use with caution. // To install: pub global activate get_cli // To create a flutter project in the current directory: // Note: By default it will take the folder’s name as project name // You can name the project with `get create project:my_project` // If ..

Read more

About: Amplify Framework provides a declarative and easy-to-use interface across different categories of cloud operations. Amplify Flutter (Developer Preview) AWS Amplify provides a declarative and easy-to-use interface across different categories of cloud operations. Our default implementation works with Amazon Web Services (AWS), but AWS Amplify is designed to be open and pluggable for any custom ..

Read more

mvp_core An MVP (model/view/presenter) framework for applications written in dart. This package gives specific support to the flutter framework. Getting Started The following code is a stubbed out tutorial of how to use this package. See the example directory in the repository of this package for a more complete example. You can find the repository here. Create the ..

Read more