flutter_ui_widgets 1.0.2 copy "flutter_ui_widgets: ^1.0.2" to clipboard
flutter_ui_widgets: ^1.0.2 copied to clipboard

This package contains Flutter UI widgets that you use in daily life.

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,
),
4
likes
160
points
36
downloads

Publisher

unverified uploader

Weekly Downloads

This package contains Flutter UI widgets that you use in daily life.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_ui_widgets