backup. before shop update

This commit is contained in:
2021-08-31 13:28:33 -04:00
parent c378a6203c
commit 808ffa3211
292 changed files with 51551 additions and 695 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class Style {
static final fontSize = 15.0;
static final primaryColor = const Color(0xFF3190e8);
static final backgroundColor = const Color(0xFFFFFFFF);
static final emptyBackgroundColor = const Color(0xFFF5F5F5);
static final borderColor = const Color(0xFFE4E4E4);
static final gPadding = 16.0;
static final textStyle = new TextStyle(
color: const Color(0xFF333333),
fontSize: fontSize,
);
static BoxDecoration testDecoration(Color color) {
return new BoxDecoration(
border: new Border.all(color: color),
);
}
}