cupertino_toolbar

Creator: coderz1093

Last updated:

0 purchases

cupertino_toolbar Image
cupertino_toolbar Images

Languages

Categories

Add to Cart

Description:

cupertino toolbar

Cupertino Toolbar #

Flutter Cupertino Widget designed to replicate iOS UIToolbar component.
This package consists of two widgets, the CupertinoToolbar and CupertinoToolbarItem. The CupertinoToolbar is typically used as the child attribute of a CupertinoPageScaffold widget.
The CupertinoToolbarItem defines the icon and onPressed callback of the toolbar button.
Usage #
import 'package:cupertino_toolbar/cupertino_toolbar.dart';
copied to clipboard
CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text('Cupertino Toolbar')
),
child: CupertinoToolbar(
items: <CupertinoToolbarItem>[
CupertinoToolbarItem(
icon: CupertinoIcons.plus_circled,
onPressed: () {}
),
CupertinoToolbarItem(
icon: CupertinoIcons.minus_circled,
onPressed: () {}
)
],
body: Center(
child: Text('Hello World')
)
)
);
copied to clipboard
Screenshot #

Contributing #
Pull requests are always welcome, please use the develop branch for all PR.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.