Jaime Blasco
Committed by GitHub

Merge pull request #12 from stevchow/patch-1

extra '}' within the code snippet
@@ -30,7 +30,7 @@ https://pub.dev/packages/modal_bottom_sheet#-installing-tab-) @@ -30,7 +30,7 @@ https://pub.dev/packages/modal_bottom_sheet#-installing-tab-)
30 showMaterialModalBottomSheet( 30 showMaterialModalBottomSheet(
31 context: context, 31 context: context,
32 builder: (context, scrollController) => Container(), 32 builder: (context, scrollController) => Container(),
33 -}) 33 +)
34 ``` 34 ```
35 What to use this over flutter `showModalBottomSheet`? 35 What to use this over flutter `showModalBottomSheet`?
36 36
@@ -64,7 +64,7 @@ iOS 13 came with an amazing new modal navigation and now it is available to use @@ -64,7 +64,7 @@ iOS 13 came with an amazing new modal navigation and now it is available to use
64 showCupertinoModalBottomSheet( 64 showCupertinoModalBottomSheet(
65 context: context, 65 context: context,
66 builder: (context, scrollController) => Container(), 66 builder: (context, scrollController) => Container(),
67 -}) 67 +)
68 ``` 68 ```
69 See generic paramameter in the Material section above 69 See generic paramameter in the Material section above
70 70