mahdyar / persian-fonts-flutter

📦 A Flutter package for using free Persian fonts.

Home Page:https://pub.dev/packages/persian_fonts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

persian_fonts

A Flutter package for using free persian fonts.

The persian_fonts package for Flutter allows you to easily use any free persian fonts in your app.

Getting Started

persian_fonts_flutter

Currently, PersianFonts supports 5 types of fonts: Vazir, Samim, Shabnam, Sahel and B-Yekan. yours isn't hrere? add it!

First, add the persian_fonts package to your pubsec dependencies.

To import PersianFonts:

import 'package:persian_fonts/persian_fonts.dart';

To use PersianFonts as the default TextStyle:

Text(
  'These are persian fonts.',
  style: PersianFonts.Samim,
),

To use PersianFonts with a customized TextStyle:

Text(
  'These are persian fonts.',
  style: PersianFonts.Samim.copyWith(
    ...
    ),
),

You can also use PersianFonts to make or modify an entire text theme to use one of the supported fonts:

MaterialApp(
  theme: ThemeData(
    textTheme: PersianFonts.vazirTextTheme,
  ),
);

About

📦 A Flutter package for using free Persian fonts.

https://pub.dev/packages/persian_fonts

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 85.2%Language:Objective-C 12.3%Language:Java 2.5%