mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
42 lines
1.1 KiB
Dart
42 lines
1.1 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Flutter code sample for [FontFeature.FontFeature.fractions].
|
|
import 'dart:ui';
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
void main() => runApp(const ExampleApp());
|
|
|
|
class ExampleApp extends StatelessWidget {
|
|
const ExampleApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return WidgetsApp(
|
|
builder: (BuildContext context, Widget? navigator) => const ExampleWidget(),
|
|
color: const Color(0xffffffff),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ExampleWidget extends StatelessWidget {
|
|
const ExampleWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// The Ubuntu Mono font can be downloaded from Google Fonts
|
|
// (https://www.google.com/fonts).
|
|
return const Text(
|
|
'Fractions: 1/2 2/3 3/4 4/5',
|
|
style: TextStyle(
|
|
fontFamily: 'Ubuntu Mono',
|
|
fontFeatures: <FontFeature>[
|
|
FontFeature.fractions(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|