glyphicon 0.1.0 copy "glyphicon: ^0.1.0" to clipboard
glyphicon: ^0.1.0 copied to clipboard

outdated

Glyphicons is an open source icon set for web, Android and iOS environments. This packages contains the definition for more than 1320 icons used by old versions of Bootstrap (Glyphicon) found in its p [...]

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Demo Glyphicon'),
        ),
        body: GridView.count(
          crossAxisCount: 2,
          children: [
            Icon(Glyphicon.alarm, size: 48,),
            Icon(Glyphicon.save, size: 48, color: Colors.red,),
            Icon(Glyphicon.table, size: 48, color: Colors.amber,),
            Icon(Glyphicon.window, size: 48, color: Colors.blue,),
            Icon(Glyphicon.archive, size: 48, color: Colors.orange,),
            Icon(Glyphicon.text_right, size: 48, color: Colors.redAccent,),
          ],
        ),
      ),
    );
  }
}
15
likes
0
points
42
downloads

Publisher

verified publisherajomuch92.site

Weekly Downloads

Glyphicons is an open source icon set for web, Android and iOS environments. This packages contains the definition for more than 1320 icons used by old versions of Bootstrap (Glyphicon) found in its page. This project in future will have more icons from other no populars icons fonts to increase the comunity of Flutter. This packages was created by Aarón Montes (https://github.com/ajomuch92).

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on glyphicon