flutter_platform_alert 0.1.1 copy "flutter_platform_alert: ^0.1.1" to clipboard
flutter_platform_alert: ^0.1.1 copied to clipboard

outdated

A simple plugin to present native alerts

example/lib/main.dart

// ignore_for_file: avoid_print

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

void main() => runApp(const MyApp());

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: Scaffold(
            appBar: AppBar(title: const Text('Flutter Platform Alert')),
            body: Center(
              child: SingleChildScrollView(
                child: Column(
                    mainAxisAlignment: MainAxisAlignment.center,
                    children: [
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              await FlutterPlatformAlert.playAlertSound();
                            },
                            child: const Text('Play Alert Sound')),
                      ),
                      const Divider(),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                windowTitle: '白日依山盡 黃河入海流',
                                text: '芋頭西米露 保力達蠻牛',
                                iconStyle: IconStyle.exclamation,
                              );
                              print(result);
                            },
                            child: const Text('Show non-ascii characters')),
                      ),
                      const Divider(),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                windowTitle: 'This ia title',
                                text: 'This is body',
                                iconStyle: IconStyle.information,
                              );
                              print(result);
                            },
                            child: const Text('Show information style')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                windowTitle: 'This ia title',
                                text: 'This is body',
                                iconStyle: IconStyle.warning,
                              );
                              print(result);
                            },
                            child: const Text('Show warning style')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                windowTitle: 'This ia title',
                                text: 'This is body',
                                iconStyle: IconStyle.error,
                              );
                              print(result);
                            },
                            child: const Text('Show error style')),
                      ),
                      const Divider(),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body');
                              print(result);
                            },
                            child: const Text('Show OK')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle: AlertButtonStyle.okCancel);
                              print(result);
                            },
                            child: const Text('Show OK Cancel')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle:
                                          AlertButtonStyle.abortRetryIgnore);
                              print(result);
                            },
                            child: const Text('Show Abort Retry Ignore')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle:
                                          AlertButtonStyle.cancelTryContinue);
                              print(result);
                            },
                            child: const Text('Show Cancel Try Continue')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle: AlertButtonStyle.retryCancel);
                              print(result);
                            },
                            child: const Text('Show Retry Cancel')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle: AlertButtonStyle.yesNo);
                              print(result);
                            },
                            child: const Text('Show Yes No')),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: ElevatedButton(
                            onPressed: () async {
                              final result =
                                  await FlutterPlatformAlert.showAlert(
                                      windowTitle: 'This ia title',
                                      text: 'This is body',
                                      alertStyle: AlertButtonStyle.yesNoCancel);
                              print(result);
                            },
                            child: const Text('Show Yes No Cancel')),
                      ),
                    ]),
              ),
            )));
  }
}