TDTxLE_Font_flutter

un paquete que reune las funetes como los icons de los fonts que mas me gusta para poder usarlos en flutter

actual mente solo cunetan con dos funetes las cuales son:


Nerd Font: el cual lo puedes encontar en nerdfonts.com. La fuente que actual mente se usa en este paquete es Hack Nerd Font.


asd

BoxIcons: el cual lo puedes encontar en boxicons.com.

Use

por tag

tdtxle_icons:
    git:
      url: https://github.com/LuisDeLaValie/tdtxle_icons_flutter.git
      tag: 0.0.1

por rama

tdtxle_icons:
    git:
      url: https://github.com/LuisDeLaValie/tdtxle_icons_flutter.git
      ref: master        

por commit

tdtxle_icons:
    git:
      url: https://github.com/LuisDeLaValie/tdtxle_icons_flutter.git
      ref: f441cba

ejemplo

import 'package:flutter/material.dart';
import 'package:tdtxle_icons/tdtxle_icons.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Material App Bar'),
        ),
        body: const Center(
          child: Icon(IconsTDTxLE.nf_dev_git_branch),
        ),
      ),
    );
  }
}