/flutter_windows_icon

Flutter Windows Icon

Primary LanguageC++MIT LicenseMIT

Windows Icon

Flutter windows icon.

Usage

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          Icon(
            WinIcons.airPlane,
            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: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

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