Ccheng2729111 / adaptive_dialog

Show alert dialog or modal action sheet adaptively according to platform.

Home Page:https://pub.dev/packages/adaptive_dialog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

adaptive_dialog

Show alert dialog or modal action sheet adaptively according to platform.

Web Demo: https://mono0926.com/adaptive_dialog/


Convenient wrapper of showAlertDialog.

iOS Android
n1 n2

Convenient wrapper of showAlertDialog.

iOS Android
n3 n4
n5 n6

Show Confirmation Dialog. For Cupertino, fallback to ActionSheet.

iOS Android
n3 n5
iOS Android
n7 n8
n9 n10
n11 n12
iOS Android
n1 n2
n3 n4

Show text input dialog until answer is correct or cancelled. This is useful for preventing very destructive action is executed mistakenly.

iOS Android
n5 n6

FAQ

The getter modalBarrierDismissLabel was called on null

adaptive_dialog uses Cupertino-style widgets internally on iOS, so GlobalCupertinoLocalizations.delegate is required under certain conditions.

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

class App extends StatelessWidget {
  const App({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      //...
      localizationsDelegates: const [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate, // This is required
      ],
    );
  }
}

The input text color same with backgound when using CupertinoTextInputDialog

This fixes the problem.

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart' hide Router;

class App extends StatelessWidget {
  const App({Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      darkTheme: ThemeData(
        cupertinoOverrideTheme: const CupertinoThemeData(
          textTheme: CupertinoTextThemeData(), // This is required
        ),
      ),
    );
  }
}

About

Show alert dialog or modal action sheet adaptively according to platform.

https://pub.dev/packages/adaptive_dialog

License:MIT License


Languages

Language:Dart 72.8%Language:C++ 13.4%Language:CMake 5.8%Language:HTML 4.0%Language:Ruby 2.1%Language:Swift 1.1%Language:C 0.6%Language:Shell 0.1%Language:Kotlin 0.1%Language:Objective-C 0.0%