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

15 lines
451 B
Dart
Raw Normal View History

2018-11-12 20:28:10 +02:00
part of '../main.dart';
class Sizes {
static const rightWidgetPadding = 14.0;
static const leftWidgetPadding = 8.0;
static const extendedWidgetHeight = 50.0;
static const iconSize = 28.0;
2018-11-14 19:52:17 +02:00
static const largeIconSize = 34.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;
}