pub github doc license

Flutter Fair

Fair is a lightweight package for Flutter, which can be used to update widget dynamically. This package is still at an early stage.

We create Fair so we can dispatch UI changes to users as bundle(s), the way similar to React Native. With Flutter Fair integrated, you can publish your UI pages without waiting for the next release date of your App. Fair provides standard widget, it can be used as a new dynamic page or as part of existing Flutter page.

what-is-fair

Quick Start

Use Flutter Fair require few steps. Add dependency inside pubspec.yaml.

dependencies:
  fair: ^3.4.0

Wrap your app with FairApp Widget.

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  
  FairApp.runApplication(
    FairApp(
      child: MaterialApp(home: App())
    )
  );
}

Import a dynamic widget as FairWidget

FairWidget(
  name: 'hello_world',
  path: 'assets/bundle/lib_hello_world.json',
)

Documentation

For more details, please refer to https://fair.58.com

Libraries

fair