mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: font family warning (#5329)
This commit is contained in:
parent
b9faf3b24a
commit
b1177ad3ea
@ -1,7 +1,14 @@
|
||||
import 'package:appflowy/workspace/application/settings/appearance/base_appearance.dart';
|
||||
import 'package:appflowy_backend/log.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
|
||||
const _defaultFontFamilies = [
|
||||
defaultFontFamily,
|
||||
builtInCodeFontFamily,
|
||||
fallbackFontFamily,
|
||||
];
|
||||
|
||||
// if the font family is not available, google fonts packages will throw an exception
|
||||
// this method will return the system font family if the font family is not available
|
||||
TextStyle getGoogleFontSafely(
|
||||
@ -12,6 +19,17 @@ TextStyle getGoogleFontSafely(
|
||||
double? letterSpacing,
|
||||
double? lineHeight,
|
||||
}) {
|
||||
// if the font family is the built-in font family, we can use it directly
|
||||
if (_defaultFontFamilies.contains(fontFamily)) {
|
||||
return TextStyle(
|
||||
fontFamily: fontFamily.isEmpty ? null : fontFamily,
|
||||
fontWeight: fontWeight,
|
||||
fontSize: fontSize,
|
||||
color: fontColor,
|
||||
letterSpacing: letterSpacing,
|
||||
height: lineHeight,
|
||||
);
|
||||
} else {
|
||||
try {
|
||||
return GoogleFonts.getFont(
|
||||
fontFamily,
|
||||
@ -26,6 +44,7 @@ TextStyle getGoogleFontSafely(
|
||||
'Font family $fontFamily is not available, using default font family instead',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return TextStyle(
|
||||
fontWeight: fontWeight,
|
||||
|
Loading…
Reference in New Issue
Block a user