1import 'package:flutter/material.dart';
2import 'package:flutter_screenutil/flutter_screenutil.dart';
3import 'package:google_fonts/google_fonts.dart';
5import 'color_palette.dart';
8 brightness: Brightness.light,
10 visualDensity: VisualDensity.adaptivePlatformDensity,
12 fontFamily: GoogleFonts.poppins().fontFamily,
14 displayLarge: TextStyle(
15 fontWeight: FontWeight.bold,
19 displayMedium: TextStyle(
20 fontWeight: FontWeight.w700,
24 displaySmall: TextStyle(
25 fontWeight: FontWeight.w500,
30 fontWeight: FontWeight.w300,
35 appBarTheme:
const AppBarTheme(
42 colorScheme:
const ColorScheme.light(
47 elevatedButtonTheme: ElevatedButtonThemeData(
48 style: ElevatedButton.styleFrom(
49 padding: EdgeInsets.symmetric(vertical: 18.sp),
53 shape: RoundedRectangleBorder(
54 borderRadius: BorderRadius.circular(10),
58 fontWeight: FontWeight.normal,
64 outlinedButtonTheme: OutlinedButtonThemeData(
65 style: OutlinedButton.styleFrom(
66 side: BorderSide.none,
68 minimumSize: Size(40.sp, 0),
69 tapTargetSize: MaterialTapTargetSize.shrinkWrap,
72 shape: RoundedRectangleBorder(
73 borderRadius: BorderRadius.circular(200.0),
String get(String locale)