flutter_get_native_icon 0.0.3 copy "flutter_get_native_icon: ^0.0.3" to clipboard
flutter_get_native_icon: ^0.0.3 copied to clipboard

Get native icon as flutter widget, Get system desktop app icon and name.

example/lib/main.dart

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

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('App Icon Display'),
      ),
      body: Center(child: NativeAppIconWidget()),
    );
  }
}

void main() {
  runApp(MaterialApp(
    home: MyHomePage(),
  ));
}
0
likes
150
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

Get native icon as flutter widget, Get system desktop app icon and name.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_get_native_icon