app_launcher_icon_widget 1.0.0 copy "app_launcher_icon_widget: ^1.0.0" to clipboard
app_launcher_icon_widget: ^1.0.0 copied to clipboard

Flutter plugin providing a widget and data for displaying the app launcher icon.

example/lib/main.dart

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

void main() {
  runApp(const MyExampleApp());
}

class MyExampleApp extends StatelessWidget {
  const MyExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("App Launcher Icon"),
        ),
        body: Center(
          child: AppLauncherIcon(),
        ),
      ),
    );
  }
}
0
likes
130
pub points
27%
popularity

Publisher

verified publishersharmadhiraj.com

Flutter plugin providing a widget and data for displaying the app launcher icon.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on app_launcher_icon_widget