themeParamsDebug method
Implementation
Widget themeParamsDebug(ThemeParams tp) => Card(
child: Column(
children: [
Text('ThemeParams',
style: Theme.of(context).textTheme.headlineMedium),
Text('bg_color?: ${tp.bgColor}'),
Text('text_color?: ${tp.textColor}'),
Text('hint_color?: ${tp.hintColor}'),
Text('link_color?: ${tp.linkColor}'),
Text('button_color?: ${tp.buttonColor}'),
Text('button_text_color?: ${tp.buttonTextcolor}'),
Text('secondary_bg_color?: ${tp.secondaryBgColor}'),
],
),
);