This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/ui_class/sizes_class.dart

16 lines
488 B
Dart
Raw Normal View History

2018-11-12 20:28:10 +02:00
part of '../main.dart';
class Sizes {
2019-02-09 02:19:30 +02:00
static const rightWidgetPadding = 16.0;
static const leftWidgetPadding = 16.0;
2018-11-25 20:44:19 +02:00
static const buttonPadding = 4.0;
2018-11-12 20:28:10 +02:00
static const extendedWidgetHeight = 50.0;
static const iconSize = 28.0;
2018-11-25 17:33:33 +02:00
static const largeIconSize = 46.0;
2018-11-18 16:40:12 +02:00
static const stateFontSize = 15.0;
static const nameFontSize = 15.0;
2018-11-12 20:28:10 +02:00
static const smallFontSize = 14.0;
static const largeFontSize = 24.0;
static const inputWidth = 160.0;
static const rowPadding = 10.0;
}