Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nitishrajuprety/circle_button

Circle button widget for flutter.
https://github.com/nitishrajuprety/circle_button

Last synced: about 1 month ago
JSON representation

Circle button widget for flutter.

Awesome Lists containing this project

README

        

# circle_button

Circle button widget for flutter.

## Example

```dart
CircleButton(
onTap: () => {},
tooltip: 'Circle Button',
width: 40.0,
height: 40.0,
borderColor: Colors.white,
borderWidth: 1.0,
borderStyle: BorderStyle.solid,
backgroundColor: Colors.transparent,
child: Icon(
Icons.add,
color: Colors.white,
),
);
```