aswdc_flutter_pub 1.0.5 aswdc_flutter_pub: ^1.0.5 copied to clipboard
ASWDC Package
ASWDC FLUTTER PUB #
A Flutter plugin for launching a URL.
Android | iOS | Linux | macOS | Web | Windows | |
---|---|---|---|---|---|---|
Support | SDK 16+ | 11.0+ | Any | 10.14+ | Any | Windows 10+ |
Usage #
To use this plugin, add url_launcher
as a dependency in your pubspec.yaml file.
Example #
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Utils().getMaterialColor(
Color(0xFFAB8408),
),
),
home: SplashScreen(
appLogo: APP_LOGO,
appName: '',
appVersion: '',
background: SPLASH_BACKGROUND_IMAGE,
duLogo: DU_LOGO,
aswdcLogo: ASWDC_LOGO,
),
);
}
}
passing a LaunchMode
.