Jenn Magder

Results 602 comments of Jenn Magder
trafficstars

@hangyujin are you the best person to review this since @chunhtai is out? Or should I add someone else?

> Did you also try dismissing a dialog (example: https://api.flutter.dev/flutter/material/showDialog.html)? Seems to me it should probably work too Confirmed that worked on main and also on this branch.

Routes and modal combined, showing the modal is dismissed before the route is popped ```dart import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() { runApp(const MaterialApp( title: 'Navigation Basics', home: FirstRoute(), ));...

Firebase incident: https://status.firebase.google.com/incidents/WXTXB2cvLmncDEseGvbM cc @godofredoc @flar

@ringoswy @darshankawar does this reproduce on Android? If not, guessing it's a SKParagraph issue?

@ringoswy @darshankawar does this reproduce with [Impeller off](https://docs.flutter.dev/perf/impeller#ios)? ``` $ flutter run --no-enable-impeller ```

The WWDC talk calls it "secure paste" and I _think_ that's the same thing as "paste and go" in the docs https://developer.apple.com/documentation/uikit/uiactionpasteandgo

See `UIResponderStandardEditActions` instance method [`pasteAndGo:`](https://developer.apple.com/documentation/uikit/uiresponderstandardeditactions/3750907-pasteandgo?language=objc) [`pasteAndMatchStyle:`](https://developer.apple.com/documentation/uikit/uiresponderstandardeditactions/3750908-pasteandmatchstyle?language=objc) and [`pasteAndSearch:`](https://developer.apple.com/documentation/uikit/uiresponderstandardeditactions/3750909-pasteandsearch?language=objc) Relevant engine code: https://github.com/flutter/engine/blob/9d784a8b0f77a40829ee38e5914cc9154f241bfb/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm#L1102 https://github.com/flutter/engine/blob/9d784a8b0f77a40829ee38e5914cc9154f241bfb/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm#L1083

Mentioned here as well https://developer.apple.com/videos/play/wwdc2021/10059/?time=1421 there's a serious lack of documentation about this...

> The WWDC talk calls it "secure paste" and I _think_ that's the same thing as "paste and go" in the docs https://developer.apple.com/documentation/uikit/uiactionpasteandgo I think was totally off and they...