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

PlatformAndroid

This is a flutter package that will enable you switch between different laucher icons in your app.

example/lib/main.dart

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

import 'home_screen.dart';

final launcherSwitch = LauncherSwitch();

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: HomeScreen(),
    );
  }
}
3
likes
160
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

This is a flutter package that will enable you switch between different laucher icons in your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on launcher_switch