showCAboutDialog function

void showCAboutDialog({
  1. required BuildContext context,
  2. Cancellable? cancellable,
  3. String? applicationName,
  4. String? applicationVersion,
  5. Widget? applicationIcon,
  6. String? applicationLegalese,
  7. List<Widget>? children,
  8. bool useRootNavigator = true,
  9. RouteSettings? routeSettings,
  10. Offset? anchorPoint,
})

Implementation

void showCAboutDialog({
  required BuildContext context,
  Cancellable? cancellable,
  String? applicationName,
  String? applicationVersion,
  Widget? applicationIcon,
  String? applicationLegalese,
  List<Widget>? children,
  bool useRootNavigator = true,
  RouteSettings? routeSettings,
  Offset? anchorPoint,
}) {
  showCDialog<void>(
    context: context,
    cancellable: cancellable,
    useRootNavigator: useRootNavigator,
    builder: (BuildContext context) {
      return AboutDialog(
        applicationName: applicationName,
        applicationVersion: applicationVersion,
        applicationIcon: applicationIcon,
        applicationLegalese: applicationLegalese,
        children: children,
      );
    },
    routeSettings: routeSettings,
    anchorPoint: anchorPoint,
  );
}