Commit 76ee3b15 authored by Izol's avatar Izol

Update version SS.15.WWW

parent f4ae6b12
sdk.dir=/Users/macbookpro/Library/Android/sdk sdk.dir=/Users/macbookpro/Library/Android/sdk
flutter.sdk=/Users/macbookpro/Developer/flutter flutter.sdk=/Users/macbookpro/Developer/flutter
flutter.buildMode=debug flutter.buildMode=debug
flutter.versionName=SS.14.WWW flutter.versionName=SS.15.WWW
flutter.versionCode=7 flutter.versionCode=8
\ No newline at end of file \ No newline at end of file
This diff is collapsed.
...@@ -58,6 +58,63 @@ class CustomFilledButton extends StatelessWidget { ...@@ -58,6 +58,63 @@ class CustomFilledButton extends StatelessWidget {
} }
} }
class CustomFillButton extends StatelessWidget {
final String title;
final String subtitle;
final double width;
final double height;
final VoidCallback? onPressed;
const CustomFillButton({
Key? key,
required this.title,
required this.subtitle,
this.width = double.infinity,
this.height = 60,
this.onPressed,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return SizedBox(
width: width,
height: height,
child: TextButton(
onPressed: onPressed,
style: TextButton.styleFrom(
backgroundColor: Colors.red,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(56),
),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
title,
style: whiteTextStyle.copyWith(
fontSize: 25,
fontWeight: semiBold,
),
),
SizedBox(width: 5),
Text(
subtitle,
style: greyTextStyle.copyWith(
fontSize: 18,
fontStyle: FontStyle.italic,
fontWeight: light,
),
textAlign: TextAlign.center,
),
],
),
),
);
}
}
class CustomTextButton extends StatelessWidget { class CustomTextButton extends StatelessWidget {
final String title; final String title;
final double width; final double width;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment