Last updated:
0 purchases
flutter color buttons
Getting started #
Flutter Color Buttons
Platform support #
Android
IOS
Windows
Mac
Linux
Chrome OS
Web
Installation #
1. Depend on it #
Add this to your package's pubspec.yaml file:
dependencies:
flutter_color_buttons: ^0.0.4
copied to clipboard
2. Install it #
You can install packages from the command line:
with Flutter:
$ flutter pub add flutter_color_buttons
copied to clipboard
Usage #
Import it #
Now in your Dart code, you can use:
import 'package:flutter_color_buttons/flutter_color_buttons.dart';
copied to clipboard
Include short and useful examples for package users.
Example_1 #
Splash Screen with Text Widget
OrchidButton(
onPressed: () {},
child: const Text(
'OrchidButton',
));
copied to clipboard
Example_2 #
Splash Screen with Icon Widget
TurkishButton(
onPressed: () {},
child:Icon(
Icons.audiotrack,
color: Colors.green,
size: 30.0,
), );
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.