native_flutter_fonts 1.0.5 native_flutter_fonts: ^1.0.5 copied to clipboard
A Flutter plugin to automatically register Flutter fonts on the native side of Android and iOS.
import 'package:accessible_text_view/accessible_text_view.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Native Flutter Fonts Example'),
),
body: const Center(
child: AccessibleTextView(
html: 'This is a test to see if font loading works.',
),
),
),
);
}
}