showCAboutDialog function
void
showCAboutDialog({
- required BuildContext context,
- Cancellable? cancellable,
- String? applicationName,
- String? applicationVersion,
- Widget? applicationIcon,
- String? applicationLegalese,
- List<
Widget> ? children, - RouteSettings? routeSettings,
- 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,
);
}