Mitchell Goodwin
Mitchell Goodwin
Addresses #73026 and #92978. Summary of the two issues: during the back swipe animation, users gestures are locked until the animation completes. However, the animation follows [this curve](https://api.flutter.dev/flutter/animation/Curves/fastLinearToSlowEaseIn-constant.html) so during...
Fixes #139434. Changes the font from "Text" to "Display". We should only be using the "Display" font for fonts of size 20 and above. Previously "Display" was not showing correctly...
Adds logic that allows an incoming route to inform the existing route of the transition animation it should play. This is a proof of concept, and is limited in functionality....
Adds a migration guide guide for MaterialState logic being marked deprecated by [flutter/pull/142151](https://github.com/flutter/flutter/pull/142151) ## Presubmit checklist - [x] This PR doesn’t contain automatically generated corrections (Grammarly or similar). - [x]...
Fixes #33799 Allows for a route to inform the route below it in the navigation stack how to animate when the topmost route enters are leaves the stack. It does...
Fixes #42560 ### Updated 10/29/24 Adds a CupertinoSheetRoute which displays an iOS style sheet, while giving the previous route a delegated transition to sync up correctly. **TODO** - [ ]...
Fixes #159289 Cupertino and Material routes were looking to see if the next route was a full screen dialog route, and not transitioning accordingly. However with the updates to allow...
On native iOS, when you have a sheet open with scrollable content, if you start scrolling, it will scroll normally. But then when you drag downwards, once you reach the...
Fixes #161687 Enables scrollable content within the sheet to work together with the dragging animation. Flutter: https://github.com/user-attachments/assets/3a9994e3-078a-410e-8288-95592713ab39 Native: https://github.com/user-attachments/assets/c0bd46fb-26f5-41a6-bf42-6c78c23ddf34 Fling when scrolling to the top vs fling when the scrollable...