buttonStyleView top-level property
getter/setter pair
Button style for view pages
Implementation
ButtonStyle buttonStyleView = ElevatedButton.styleFrom(
foregroundColor: darkBlue,
backgroundColor: lightBlue, // foreground
padding: const EdgeInsets.symmetric(
horizontal: 15,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
),
);