2022-10-04 13:12:54 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 Yubico.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-12-02 13:44:17 +03:00
|
|
|
import 'package:flutter/material.dart';
|
2023-12-20 17:09:31 +03:00
|
|
|
|
2024-01-30 19:29:24 +03:00
|
|
|
const defaultPrimaryColor = Colors.lightGreen;
|
2024-01-17 12:57:01 +03:00
|
|
|
|
2021-12-02 13:44:17 +03:00
|
|
|
class AppTheme {
|
2024-01-24 19:13:03 +03:00
|
|
|
static ThemeData getTheme(Brightness brightness, Color primaryColor) =>
|
|
|
|
switch (brightness) {
|
|
|
|
Brightness.light => getLightTheme(primaryColor),
|
|
|
|
Brightness.dark => getDarkTheme(primaryColor),
|
|
|
|
};
|
|
|
|
|
|
|
|
static ThemeData getLightTheme(Color primaryColor) => ThemeData(
|
2023-01-26 13:52:01 +03:00
|
|
|
useMaterial3: true,
|
2023-02-03 12:48:51 +03:00
|
|
|
colorScheme: ColorScheme.fromSeed(
|
|
|
|
brightness: Brightness.light,
|
2024-01-16 12:29:44 +03:00
|
|
|
seedColor: primaryColor,
|
2024-01-25 14:52:42 +03:00
|
|
|
onSurface: const Color(0xbb000000),
|
|
|
|
onSurfaceVariant: const Color(0x99000000),
|
2024-01-16 12:29:44 +03:00
|
|
|
),
|
|
|
|
fontFamily: 'Roboto',
|
|
|
|
appBarTheme: const AppBarTheme(
|
|
|
|
color: Colors.transparent,
|
2022-04-05 17:36:03 +03:00
|
|
|
),
|
2024-01-25 14:52:42 +03:00
|
|
|
listTileTheme: const ListTileThemeData(
|
2022-06-02 15:52:00 +03:00
|
|
|
// For alignment under menu button
|
2024-01-25 14:52:42 +03:00
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 18.0),
|
2022-06-02 15:52:00 +03:00
|
|
|
visualDensity: VisualDensity.compact,
|
|
|
|
),
|
2023-12-20 17:09:31 +03:00
|
|
|
tooltipTheme: const TooltipThemeData(
|
|
|
|
waitDuration: Duration(milliseconds: 500),
|
|
|
|
textStyle: TextStyle(color: Color(0xff3c3c3c)),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Color(0xffe2e2e6),
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(8.0)),
|
|
|
|
),
|
2022-02-22 12:56:52 +03:00
|
|
|
),
|
2021-12-02 13:44:17 +03:00
|
|
|
);
|
2023-01-26 13:52:01 +03:00
|
|
|
|
2024-01-24 19:13:03 +03:00
|
|
|
static ThemeData getDarkTheme(Color primaryColor) => ThemeData(
|
2022-05-19 09:47:47 +03:00
|
|
|
useMaterial3: true,
|
2023-12-20 17:09:31 +03:00
|
|
|
colorScheme: ColorScheme.fromSeed(
|
|
|
|
brightness: Brightness.dark,
|
2024-01-16 12:29:44 +03:00
|
|
|
seedColor: primaryColor,
|
2023-12-20 17:09:31 +03:00
|
|
|
background: const Color(0xff282828),
|
2024-01-25 14:52:42 +03:00
|
|
|
onSurface: const Color(0xeeffffff),
|
|
|
|
onSurfaceVariant: const Color(0xaaffffff),
|
2024-01-16 12:29:44 +03:00
|
|
|
),
|
|
|
|
fontFamily: 'Roboto',
|
|
|
|
appBarTheme: const AppBarTheme(
|
|
|
|
color: Colors.transparent,
|
2022-05-19 09:47:47 +03:00
|
|
|
),
|
2024-01-25 14:52:42 +03:00
|
|
|
listTileTheme: const ListTileThemeData(
|
2022-06-02 15:52:00 +03:00
|
|
|
// For alignment under menu button
|
2024-01-25 14:52:42 +03:00
|
|
|
contentPadding: EdgeInsets.symmetric(horizontal: 18.0),
|
2022-06-02 15:52:00 +03:00
|
|
|
visualDensity: VisualDensity.compact,
|
|
|
|
),
|
2023-12-20 17:09:31 +03:00
|
|
|
tooltipTheme: const TooltipThemeData(
|
|
|
|
waitDuration: Duration(milliseconds: 500),
|
|
|
|
textStyle: TextStyle(color: Color(0xffE2E2E6)),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Color(0xff3c3c3c),
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(8.0)),
|
|
|
|
),
|
2022-05-19 09:47:47 +03:00
|
|
|
),
|
|
|
|
);
|
2021-12-02 13:44:17 +03:00
|
|
|
}
|
2022-09-01 11:14:59 +03:00
|
|
|
|
2023-01-26 13:52:01 +03:00
|
|
|
/* TODO: Remove this. It is left here as a reference as we adjust styles to work with Flutter 3.7.
|
2022-09-01 11:14:59 +03:00
|
|
|
/// This fixes the issue with FilterChip resizing vertically on toggle.
|
2022-09-23 11:12:54 +03:00
|
|
|
BorderSide? _chipBorder(Color color) =>
|
|
|
|
MaterialStateBorderSide.resolveWith((states) => BorderSide(
|
|
|
|
width: 1,
|
|
|
|
color: states.contains(MaterialState.selected)
|
|
|
|
? Colors.transparent
|
|
|
|
: color));
|
2023-01-26 13:52:01 +03:00
|
|
|
*/
|