mirror of
https://github.com/Myzel394/quid_faciam_hodie.git
synced 2025-06-21 00:20:29 +02:00
36 lines
860 B
Dart
36 lines
860 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final LIGHT_THEME = ThemeData(
|
|
textTheme: ThemeData().textTheme.copyWith(
|
|
headline1: const TextStyle(
|
|
fontSize: 32,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
inputDecorationTheme: InputDecorationTheme(
|
|
filled: true,
|
|
helperMaxLines: 10,
|
|
errorMaxLines: 10,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
),
|
|
);
|
|
|
|
final DARK_THEME = ThemeData.dark().copyWith(
|
|
textTheme: ThemeData.dark().textTheme.copyWith(
|
|
headline1: const TextStyle(
|
|
fontSize: 32,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
inputDecorationTheme: InputDecorationTheme(
|
|
filled: true,
|
|
helperMaxLines: 10,
|
|
errorMaxLines: 10,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
),
|
|
);
|