buttonabhishekjbri 0.0.2 copy "buttonabhishekjbri: ^0.0.2" to clipboard
buttonabhishekjbri: ^0.0.2 copied to clipboard

A customizable Flutter button widget with rounded corners, gradients, and advanced border options for all your UI needs.

example/main.dart

import 'package:flutter/material.dart';
import 'package:buttonabhishekjbri/buttonabhishekjbri.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'ButtonAbhishekJBRI Example',
      home: Scaffold(
        appBar: AppBar(title: const Text('ButtonAbhishekJBRI Example')),
        body: Center(
          child: ButtonAbhishekJBRI(
            titleButton: 'Click Me',
            onPressed: () {
              print('Button clicked!');
            },
            buttonColor: Colors.blue,
            borderRadiusEdge: 20.0,
            allBorder: 1,
          ),
        ),
      ),
    );
  }
}
11
likes
160
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter button widget with rounded corners, gradients, and advanced border options for all your UI needs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on buttonabhishekjbri