native_flutter_fonts 1.0.5 copy "native_flutter_fonts: ^1.0.5" to clipboard
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.

example/lib/main.dart

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.',
          ),
        ),
      ),
    );
  }
}
0
likes
150
pub points
40%
popularity

Publisher

verified publisherdra11y.com

A Flutter plugin to automatically register Flutter fonts on the native side of Android and iOS.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on native_flutter_fonts