flutter/examples/api/lib/ui/text/font_feature.font_feature_alternative.0.dart
Ian Hickson c674161404
Animate TextStyle.fontVariations (#138881)
Fixes https://github.com/flutter/flutter/issues/105120

I also exposed the relevant dart:ui types which had the effect of removing a large number of dart:ui imports from examples.
2023-12-08 09:08:26 +00:00

41 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.
import 'package:flutter/widgets.dart';
/// Flutter code sample for [FontFeature.FontFeature.alternative].
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 Raleway font can be downloaded from Google Fonts
// (https://www.google.com/fonts).
return const Text(
'The infamous Tuna Torture.',
style: TextStyle(
fontFamily: 'Raleway',
fontFeatures: <FontFeature>[
FontFeature.alternative(1), // or 2, or 3, or...
],
),
);
}
}