platform_adaptive_buttons 0.0.1 platform_adaptive_buttons: ^0.0.1 copied to clipboard
A Flutter package that provides a custom button that adapts to the platform's design guidelines.
A flutter utility that allows you to easily adapt your material buttons to the iOS style.
Getting started #
Just create your button as you would normally do, and then append .adaptive() to it and thats it.
ElevatedButton(
onPressed: () {},
child: const Text('Tap me!'),
).adaptive(context);
it works with the following buttons:
ElevatedButton
, TextButton
, OutlinedButton
, and FilledButton
.