Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 776 Bytes

README.md

File metadata and controls

48 lines (32 loc) · 776 Bytes

flager_ui

Design beautiful apps using Flutter

Unofficial implementation of UI for Flutter.

Installation

Add the package to your dependencies:

dependencies:
  flager_ui: ^0.0.1

OR:

dependencies:
  flager_ui:
    git: https://github.com/pesaregorg/flager_ui.git

You can see the example app here

Finally, run dart pub get to download the package.

Projects using this library should use the stable channel of Flutter

Style

Using the FlagerUi.themeData widget

import 'package:flager_ui/flager_ui.dart';


MaterialApp(
  title: ...,

  theme: FlagerUi.themeData(),

  home: ...,
);