Flutter Button

Flutter Button package lets you add a custom button styled to our Flutter app.

Installation

  1. Add the latest version of package to your pubspec.yaml (and run dart pub get):

dependencies:
flutter_btn_pkg: ^0.0.1

  1. Import the package and use it in your Flutter App:
    import 'package:flutter_btn_pkg/flutter_btn_pkg.dart';

Example

You can modify:

  • button title

CustomButton(
onPressed: _incrementCounter,
child: const Text("Click me")
),

Next Goals :

Change font, background-color for button.

Libraries

flutter_btn_pkg