Flutter package makes different Flutter UI widgets implementation easy for you

Flutter Widgets Flutter Package

This package makes different Flutter UI widgets implementation easy for you.

Flutter Widgets

The list of widgets include in this package:

☑️ AppBar

☑️ FloatingActionButton

Installation


import 'package:flutter_ui_widgets/flutter_ui_widgets.dart';

Usage


AppBar

FlutterAppBar(
        title: "Flutter AppBar",
        centerTitle: true,
        backgroundColor: Colors.grey,
        gradient: LinearGradients.pinkAmber,
      ),

Some other properties same as AppBar widget.


FloatingActionButton

FlutterFloatingActionButton(
        onPressed: () {},
        child: Icon(
          Icons.add,
          size: 30,
        ),
      ),

Some other properties same as FloatingActionButton widget.


GitHub

View Github