Flutter UI Widgets Flutter Package

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

Flutter UI Widgets

The list of widgets include in this package:

☑️ AppBar

☑️ FloatingActionButton

☑️ Text

Installation

import 'package:flutter_ui_widgets/flutter_ui_widgets.dart';

Usage

AppBar

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

Some other properties same as AppBar widget.


FloatingActionButton

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

Some other properties same as FloatingActionButton widget.

Text

FWText(
    text: "Flutter UI Widgets",
    textStyle: TextStyle(),
    softWrap: false,
    textAlign: center,
),