google_fonts_arabic 1.1.7 copy "google_fonts_arabic: ^1.1.7" to clipboard
google_fonts_arabic: ^1.1.7 copied to clipboard

Arabic fonts by google right into your flutter application. Just import the fonts file and use the constant in example to browse the available fonts.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:google_fonts_arabic/fonts.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyHomePage(title: 'google_fonts_arabic_example'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              "كيف حالك يا أخ العرب؟",
              style: new TextStyle(
                fontFamily: ArabicFonts.Cairo,
                package: 'google_fonts_arabic',
                fontSize: 25.0,
              ),
            ),
          ],
        ),
      ),
    );
  }
}
copied to clipboard
27
likes
35
points
56
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.24 - 2025.04.08

Arabic fonts by google right into your flutter application. Just import the fonts file and use the constant in example to browse the available fonts.

Homepage

License

OFL-1.1, MIT (license)

Dependencies

flutter

More

Packages that depend on google_fonts_arabic