mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-08-25 20:19:40 +00:00
clean the code for save and next buttons and enhance UI
This commit is contained in:
@ -12,10 +12,13 @@ class SvgTextButton extends StatelessWidget {
|
||||
final double borderRadius;
|
||||
final List<BoxShadow> boxShadow;
|
||||
final double svgSize;
|
||||
|
||||
final double? fontSize;
|
||||
final FontWeight? fontWeight;
|
||||
const SvgTextButton({
|
||||
super.key,
|
||||
required this.svgAsset,
|
||||
this.fontSize,
|
||||
this.fontWeight,
|
||||
required this.label,
|
||||
required this.onPressed,
|
||||
this.backgroundColor = ColorsManager.circleRolesBackground,
|
||||
@ -60,8 +63,8 @@ class SvgTextButton extends StatelessWidget {
|
||||
label,
|
||||
style: TextStyle(
|
||||
color: labelColor,
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.w500,
|
||||
fontSize: fontSize ?? 16,
|
||||
fontWeight: fontWeight ?? FontWeight.w500,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
Reference in New Issue
Block a user