fontisto_flutter 3.1.2 copy "fontisto_flutter: ^3.1.2" to clipboard
fontisto_flutter: ^3.1.2 copied to clipboard

discontinued

Provides over 1000 (update..) additional icons to use in your apps.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Fontisto flutter Example',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Fontisto flutter'),
      ),
      body: Column(
        children: <Widget>[
          ListTile(
            title: Text("Fontisto"),
            subtitle: Text("Istos.android"),
            leading: Icon(
              Istos.android,
              color: Colors.green,
              size: 40.0,
            ),
          ),
          ListTile(
            title: Text("Linearicon"),
            subtitle: Text("Linear.android"),
            leading: Icon(
              Linear.android,
              color: Colors.green,
              size: 40.0,
            ),
          ),
        ],
      ),
    );
  }
}
37
likes
40
points
58
downloads

Publisher

unverified uploader

Weekly Downloads

Provides over 1000 (update..) additional icons to use in your apps.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on fontisto_flutter