lc_widgets 1.3.0
SDKflutter
Platformandroidioswindowslinuxmacos
Flutter Common Widgets Collection
A collection for flutter widgets and tools
Usage
import 'package:lc_widgets/lc_widgets.dart';
final btn = AsyncButton(
type: AsyncButtonType.outlined,
onPressed: () async {
await Future.delayed(const Duration(seconds: 2));
},
child: const Text('Btn'),
);