AgoraDesk-LocalMonero / agoradesk-app-foss

Source code for the AgoraDesk/LocalMonero Mobile Applications. https://agoradesk.com
Apache License 2.0
138 stars 18 forks source link

global text styles #210

Closed sergdeus closed 1 year ago

sergdeus commented 1 year ago
// const textTheme = TextTheme(
//   headline1: TextStyle(fontSize: 24, fontWeight: FontWeight.w400),
//   headline2: TextStyle(fontSize: 18, fontWeight: FontWeight.w500),
//   headline3: TextStyle(fontSize: 17, fontWeight: FontWeight.w500),
//   // title medium
//   headline4: TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
//   headline5: TextStyle(fontSize: 15, fontWeight: FontWeight.w500),
//   headline6: TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
//   bodyText1: TextStyle(fontSize: 16, fontWeight: FontWeight.w400),
//   bodyText2: TextStyle(fontSize: 14, fontWeight: FontWeight.w400),
// );

const textTheme = TextTheme(
  displayLarge: TextStyle(fontSize: 24, fontWeight: FontWeight.w400),
  displayMedium: TextStyle(fontSize: 18, fontWeight: FontWeight.w500),
  displaySmall: TextStyle(fontSize: 17, fontWeight: FontWeight.w500),
  // title medium
  headlineMedium: TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  headlineSmall: TextStyle(fontSize: 15, fontWeight: FontWeight.w500),
  titleLarge: TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
  bodyLarge: TextStyle(fontSize: 16, fontWeight: FontWeight.w400),
  bodyMedium: TextStyle(fontSize: 14, fontWeight: FontWeight.w400),
);