buttons_showcase 0.0.3 copy "buttons_showcase: ^0.0.3" to clipboard
buttons_showcase: ^0.0.3 copied to clipboard

This project will show and let available a good number of different buttons types, each one styleable in a lot of different combinations.

example/lib/main.dart

import 'package:example/pages/homepage.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Buttons Showcase',
      theme: ThemeData(
        primarySwatch: Colors.pink,
      ),
      home: const Homepage(),
    );
  }
}
2
likes
120
pub points
0%
popularity

Publisher

unverified uploader

This project will show and let available a good number of different buttons types, each one styleable in a lot of different combinations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on buttons_showcase