1
0
forked from baron/baron-sso

perf(userfront): optimize login web loading

This commit is contained in:
2026-05-15 14:16:34 +09:00
parent 57456bd4cd
commit 4346f48bbe
12 changed files with 383 additions and 62 deletions

View File

@@ -0,0 +1,12 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:userfront/core/theme/app_theme.dart';
void main() {
test('themes use the platform default font family', () {
final lightTheme = buildLightTheme();
final darkTheme = buildDarkTheme();
expect(lightTheme.textTheme.bodyMedium?.fontFamily, isNot('NotoSansKR'));
expect(darkTheme.textTheme.bodyMedium?.fontFamily, isNot('NotoSansKR'));
});
}