menuButtonStyle property

ButtonStyle menuButtonStyle
getter/setter pair

Implementation

var menuButtonStyle = ElevatedButton.styleFrom( //the styling of the buttons in the menu page
  backgroundColor: Colors.orange,
  fixedSize: Size(0.8 * PlatformDispatcher.instance.views.first.physicalSize.width / PlatformDispatcher.instance.views.first.devicePixelRatio, 0.075 * PlatformDispatcher.instance.views.first.physicalSize.height/ PlatformDispatcher.instance.views.first.devicePixelRatio),
  textStyle: const TextStyle(
    fontSize: 16.9,
    fontWeight: FontWeight.w400
  )
);