Skip to content

Latest commit

 

History

16 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cupertino Toolbar

pub package GPL-3.0 license

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';
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')
		)
	)
);

Screenshot

Cupertino Toolbar Demo

Contributing

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

About

Flutter Cupertino Widget designed to replicate iOS UIToolbar component

Topics

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages