tbib_button_with_loader 1.0.7-dart3
tbib_button_with_loader: ^1.0.7-dart3 copied to clipboard
Flutter widgets and themes implementing the current macOS design language.
TBIB Button with loader #

Import #
import 'package:tbib_button_with_loader/tbib_button_with_loader.dart';
How To Use #
ButtonWithLoader(
onPressed: (startLoading, stopLoading,
Function(bool isSuccess) isSuccess, state) {
this.startLoading = startLoading;
this.stopLoading = stopLoading;
this.isSuccess = isSuccess;
this.startLoading?.call();
Future.delayed(const Duration(seconds: 2), () {
this.stopLoading?.call();
});
},
title: 'Click Me',
)