NativeButtonStyle constructor

const NativeButtonStyle({
  1. bool showButton = false,
  2. String text = 'Close',
  3. Color backgroundColor = const Color(0xFF424242),
  4. Color textColor = const Color(0xFFFFFFFF),
  5. double fontSize = 14.0,
})

Creates a NativeButtonStyle instance.

Implementation

const NativeButtonStyle({
  this.showButton = false,
  this.text = 'Close',
  this.backgroundColor = const Color(0xFF424242), // Grey 800
  this.textColor = const Color(0xFFFFFFFF),
  this.fontSize = 14.0,
});