Initial commit
This commit is contained in:
13
lib/widgets/button_styles.dart
Normal file
13
lib/widgets/button_styles.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ButtonStyles {
|
||||
|
||||
ButtonStyle btnS = ButtonStyle(
|
||||
shape: MaterialStateProperty.all<RoundedRectangleBorder>(
|
||||
RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(10.0),
|
||||
side: BorderSide(color: Colors.redAccent, width: 1.2))),
|
||||
backgroundColor: MaterialStateProperty.all(Colors.redAccent[700]),);
|
||||
TextStyle txS = TextStyle(
|
||||
color: Colors.white, fontSize: 20, fontWeight: FontWeight.w400);
|
||||
}
|
||||
Reference in New Issue
Block a user