app_launcher 0.1.0
app_launcher: ^0.1.0 copied to clipboard
A flutter plugin that launches an Android or iOS installed on the device using the application ID.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:app_launcher/app_launcher.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
RaisedButton(
onPressed: () async {
await AppLauncher.openApp(
androidApplicationId: "com.whatsapp",
);
},
child: Text('Open WhatsApp'),
),
SizedBox(height: 16),
RaisedButton(
onPressed: () async {
await AppLauncher.openApp(
androidApplicationId: "sth.apply.wrongapp",
);
},
child: Text('Open Something Else'),
),
],
),
),
),
);
}
}