Last updated:
0 purchases
flutter ui widgets
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';
copied to clipboard
Usage #
AppBar #
FWAppBar(
title: "Flutter AppBar",
centerTitle: true,
backgroundColor: Colors.grey,
gradient: LinearGradients.pinkAmber,
),
copied to clipboard
Some other properties same as AppBar widget.
FloatingActionButton #
FWFloatingActionButton(
onPressed: () {},
child: Icon(
Icons.add,
size: 30,
),
),
copied to clipboard
Some other properties same as FloatingActionButton widget.
Text #
FWText(
text: "Flutter UI Widgets",
textStyle: TextStyle(),
softWrap: false,
textAlign: center,
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.