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'),
);