flutter_jap_icons 0.2.1 copy "flutter_jap_icons: ^0.2.1" to clipboard
flutter_jap_icons: ^0.2.1 copied to clipboard

Just Another package of icons. This package contains medical, maps and geoglyphs icons. Enjoy it.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_jap_icons/geoglyphs_icons_icons.dart';
import 'package:flutter_jap_icons/map_icons_icons.dart';
import 'package:flutter_jap_icons/medical_icons_icons.dart';

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

class MyApp extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: Text('Demo Jap Icons'),
        ),
        body: GridView.count(
          crossAxisCount: 2,
          children: [
            Icon(GeoglyphsIcons.turf_merge, size: 48,),
            Icon(GeoglyphsIcons.turf_envelope, size: 48, color: Colors.red,),
            Icon(MapIcons.bar, size: 48, color: Colors.amber,),
            Icon(MapIcons.campground, size: 48, color: Colors.blue,),
            Icon(MedicalIcons.pediatrics, size: 48, color: Colors.orange,),
            Icon(MedicalIcons.pharmacy, size: 48, color: Colors.redAccent,),
          ],
        ),
      ),
    );
  }
}
2
likes
150
points
33
downloads

Documentation

API reference

Publisher

verified publisherajomuch92.site

Weekly Downloads

Just Another package of icons. This package contains medical, maps and geoglyphs icons. Enjoy it.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_jap_icons