Initial commit

This commit is contained in:
2021-09-02 08:35:25 -03:00
commit 8eda6bb8ed
108 changed files with 6390 additions and 0 deletions

View 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);
}