From 21256ca9ec5a5df0f91715e7a6850924b5864ff0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 11 Oct 2021 22:09:25 +0200 Subject: [PATCH] fix: don't try to set headline --- lib/theme/theme.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/theme/theme.dart b/lib/theme/theme.dart index f342a1e..7825031 100644 --- a/lib/theme/theme.dart +++ b/lib/theme/theme.dart @@ -27,12 +27,12 @@ ThemeData _buildVikunjaTheme(ThemeData base) { ), ), textTheme: base.textTheme.copyWith( - headline: base.textTheme.headline.copyWith( - fontFamily: 'Quicksand', - ), - title: base.textTheme.title.copyWith( - fontFamily: 'Quicksand', - ), +// headline: base.textTheme.headline.copyWith( +// fontFamily: 'Quicksand', +// ), +// title: base.textTheme.title.copyWith( +// fontFamily: 'Quicksand', +// ), button: base.textTheme.button.copyWith( color: vWhite, // This does not work, looks like a bug in Flutter: https://github.com/flutter/flutter/issues/19623