-1

I wanted to ask if there is any Cupertino style “showModalBottomSheet” available by default in Flutter? I’m designing the app for iOS and that’s one of the things I want to include for my “Add record” process of the app.

I would like to achieve this:

enter image description here

On iOS there is also animation tight to that where background screen is “zoomed out a bit”.

I would thought that it will be part of the Cupertino package but I haven’t found it there.

Appreciate any guidance/help you can provide!

Petr G
  • 25
  • 9

1 Answers1

0

use showCupertinoModalPopup,

import 'package:flutter/cupertino.dart' before using it.

  • 1
    Thanks for sharing - I didn't know about that to be honest. In this case I understand that I'll need to define my own animation that will make the background being zoomed, right? – Petr G Apr 04 '22 at 12:05