adaptive_button 0.0.3
adaptive_button: ^0.0.3 copied to clipboard
Flutter AdaptiveButton
adaptive_button #
Flutter AdaptiveButton
Getting Started #
Import the following package.
import 'package:adaptive_button/adaptive_button.dart';
[]
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
child: AdaptiveButton(
child: Text("AdaptiveButton"),
onPressed: () async {}
),
));
}