9 lines
229 B
Dart
9 lines
229 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
TextStyle monospaceStyle(BuildContext context) => TextStyle(
|
|
color: Theme.of(context).colorScheme.onSurface,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
fontFamily: 'monospace',
|
|
);
|