dripicons_flutter 0.0.1 copy "dripicons_flutter: ^0.0.1" to clipboard
dripicons_flutter: ^0.0.1 copied to clipboard

outdated

Flutter icon package using dripicons. A completely free vector line-icon font by Amit Jakhu

DripiIcons Icon #

DripIcons Flutter

Thanks to authors of Dripicons Amit Jakhu

DripiIcons

alt text

DripiIcons Weather

alt text

Usage #

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          Icon(
            DripIcons.alarm,
            size: 100,
            color: Colors.blue,
          ),
          Icon(
            DripIconsWeather.cloud_2,
            size: 100,
            color: Colors.blue,
          ),
        ],
      ),
    );
  }
}

Example #

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

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

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

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          Icon(
            DripIcons.alarm,
            size: 100,
            color: Colors.blue,
          ),
          Icon(
            DripIconsWeather.cloud_2,
            size: 100,
            color: Colors.blue,
          ),
        ],
      ),
    );
  }
}
0
likes
0
pub points
8%
popularity

Publisher

unverified uploader

Flutter icon package using dripicons. A completely free vector line-icon font by Amit Jakhu

Repository (GitHub)

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on dripicons_flutter