Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nitishrajuprety/circle_button
- Owner: nitishrajuprety
- License: mit
- Created: 2020-07-22T14:36:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T05:06:26.000Z (over 4 years ago)
- Last Synced: 2024-11-06T03:11:53.557Z (3 months ago)
- Language: Dart
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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,
),
);
```