17 lines
552 B
Dart
17 lines
552 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:hub/flutter_flow/index.dart';
|
|
|
|
class DesignUtil {
|
|
static appbarStyle() {
|
|
FlutterFlowTheme.of(navigatorKey.currentContext!).headlineMedium.override(
|
|
fontFamily: 'Nunito',
|
|
color: FlutterFlowTheme.of(navigatorKey.currentContext!).primaryText,
|
|
fontSize: 15.0,
|
|
fontWeight: FontWeight.bold,
|
|
letterSpacing: 0.0,
|
|
useGoogleFonts: GoogleFonts.asMap().containsKey('Nunito'),
|
|
);
|
|
}
|
|
}
|