showEncryptionInfoBottomSheet function

void showEncryptionInfoBottomSheet({
  1. required dynamic context,
})

Implementation

void showEncryptionInfoBottomSheet({
  required BuildContext context,
}) {
  showModalBottomSheet(
    showDragHandle: false,
    useSafeArea: true,
    context: context,
    isDismissible: false,
    builder: (context) {
      return const EncryptionInfoSheet();
    },
  );
}