mirror of https://github.com/flutter/samples.git
parent
a583b31c77
commit
c6ccc231b9
@ -0,0 +1,3 @@
|
||||
description: This file stores settings for Dart & Flutter DevTools.
|
||||
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
|
||||
extensions:
|
@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
|
||||
// Note: original Figma file uses Nikkei Maru
|
||||
// which is not available on GoogleFonts
|
||||
final cardTitleStyle = GoogleFonts.anton(
|
||||
textStyle: const TextStyle(
|
||||
fontWeight: FontWeight.w800,
|
||||
fontSize: 15.0,
|
||||
color: Colors.white,
|
||||
letterSpacing: 1,
|
||||
),
|
||||
);
|
Loading…
Reference in new issue