echo_utils 0.0.1 echo_utils: ^0.0.1 copied to clipboard
一些小工具,some small tools
一些简单widget,方便少写代码
Features #
封装了一些简单widget
Getting started #
import 'packages:echo_utils/echo_utils.dart'
Usage #
import 'package:echo_utils/echo_utils.dart';
import 'package:flutter/cupertino.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return EchoButton(buttonName: "buttonName", onPressed: (){});
}
}
Additional information #
欢迎大家使用提出建议