adaptive_dialog 1.9.0-no-macos.0 copy "adaptive_dialog: ^1.9.0-no-macos.0" to clipboard
adaptive_dialog: ^1.9.0-no-macos.0 copied to clipboard

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

adaptive_dialog #

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

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

Compatibility with Flutter 3.10 #

Due to the fact that the dependent macos_ui package has not yet been updated for compatibility with Flutter 3.10, adaptive_dialog package is affected and results in compilation errors with version 1.8.3.

Solution 1 #

In your pubspec.yaml file, specify the following forked version that has been addressed:

dependency_overrides:
  macos_ui:
    git:
      url: https://github.com/Mayb3Nots/macos_ui
      ref: ef51bfe

Solution 2 #

In pubspec.yaml, indicate to resolve dependencies with v1.9 dev:

dependencies:
  adaptive_dialog: '>=1.9.0-0'

In this case, a version without macos_ui dependency will be temporarily used, resulting in a UI on macOS is same as iOS. Upon stable release, the UI that uses the original macos_ui will be restored.


showOkAlertDialog #

Convenient wrapper of showAlertDialog.

iOS Android
n1 n2

showOkCancelAlertDialog #

Convenient wrapper of showAlertDialog.

iOS Android
n3 n4
n5 n6

showConfirmationDialog #

Show Confirmation Dialog. For Cupertino, fallback to ActionSheet.

iOS Android
n3 n5

showModalActionSheet #

iOS Android
n7 n8
n9 n10
n11 n12

showTextInputDialog #

iOS Android
n1 n2
n3 n4

showTextAnswerDialog #

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
        ),
      ),
    );
  }
}
942
likes
0
pub points
98%
popularity

Publisher

verified publishermono0926.com

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

Repository (GitHub)
View/report issues

Funding

Consider supporting this project:

github.com

License

unknown (LICENSE)

Dependencies

animations, collection, dynamic_color, flutter, intersperse, meta

More

Packages that depend on adaptive_dialog