csbuttons 0.0.1 copy "csbuttons: ^0.0.1" to clipboard
csbuttons: ^0.0.1 copied to clipboard

A Flutter package that provides custom button and animation widgets.

example/main.dart

import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Demo',
      home: Home(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return const Scaffold();
  }
}
1
likes
0
points
151
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides custom button and animation widgets.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on csbuttons