Filled Button in Flutter
1 min read

Filled Button in Flutter

Filled button in Flutter could be created by styling the ElevatedButton.

ElevatedButton(
    style: ElevatedButton.styleFrom(
       onPrimary: Theme.of(context).colorScheme.onPrimary,
       primary: Theme.of(context).colorScheme.primary,
    ).copyWith(elevation: ButtonStyleButton.allOrNull(0.0)),
    child: const Text("Checkin")
)