This commit is contained in:
Yegor Vialov 2019-02-01 11:51:35 +02:00
parent 6cc1a37d9d
commit 2adfaca0c4
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ class Sizes {
static const nameFontSize = 15.0;
static const smallFontSize = 14.0;
static const largeFontSize = 24.0;
static const mediumFontSize = 21.0;
static const inputWidth = 160.0;
static const rowPadding = 10.0;
}

View File

@ -18,7 +18,7 @@ class CardHeaderWidget extends StatelessWidget {
title: Text("$name",
textAlign: TextAlign.left,
overflow: TextOverflow.ellipsis,
style: new TextStyle(fontSize: Sizes.mediumFontSize)),
style: new TextStyle(fontWeight: FontWeight.bold, fontSize: Sizes.largeFontSize)),
);
} else {
result = new Container(width: 0.0, height: 0.0);