Skip to content

yahu1031/tabler-icons

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tabler Icons

Flutter Icon Base on tabler-icon.io

Usage

  • add to pubspec.yaml
flutter pub add tabler_icons
  • Import in flutter source code:
  import 'package:tabler_icons/tabler_icons.dart';
  • Example:
Center(
      child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: <Widget>[
          Row(
            children: <Widget>[
              Icon(TablerIcons.arrow_back),
              SizedBox(width: 10.0),
              Text('Arrow Back Icon')
            ],
          ),
          Row(
            children: <Widget>[
              Icon(TablerIcons.heart),
              SizedBox(width: 10.0),
              Text('Heart Icon')
            ],
          ),
        ],
      ),
    )

https://tabler-icons.io/

Screenshot 2021-06-06 020544

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%