line_awesome_flutter 2.0.0 copy "line_awesome_flutter: ^2.0.0" to clipboard
line_awesome_flutter: ^2.0.0 copied to clipboard

The Line Awesome Icons pack for flutter. Provides 1542 additional icons to use in your apps.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: Scaffold(
          appBar: AppBar(
            title: Text("Line Awesome Icons Demo"),
          ),
          body: Center(
              child:
                  Icon(LineAwesomeIcons.home, size: 50, color: Colors.green)),
        ));
  }
}
150
likes
120
pub points
97%
popularity

Publisher

unverified uploader

The Line Awesome Icons pack for flutter. Provides 1542 additional icons to use in your apps.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on line_awesome_flutter