- 27 Sep, 2016 7 commits
-
-
Adam Barth authored
This patch fixes the issue in two ways: 1. The content area is now scrollable, which means you can scroll to reveal any parts that don't fit on screen. 2. The content area is now small enough to fit on screen in landscape on a Nexus 5. Fixes #6054
-
Adam Barth authored
Fixes #6053
-
Adam Barth authored
Rather than scrolling the entire contents of the dialog, we should instead scroll only the part between the title and the button bar. Also, polish up the padding in the simple dialog demo. Fixes #6057
-
Adam Barth authored
The code previously assumed that paint would be called before hitTest, but that assumption isn't valid because RenderOpacity hit tests its children without painting them. Fixes #6089
-
Devon Carew authored
* fix devices test; print on test failure * mock out a call to Doctor
-
Devon Carew authored
-
Chris Bracken authored
Ensure that we're monitoring logs before we launch the app on the device. This prevents the case where we start monitoring after the ports have already been logged. Also update the regex to use an optional capture group.
-
- 26 Sep, 2016 15 commits
-
-
Chris Bracken authored
-
Chris Bracken authored
As of Xcode 7, Apple recommends setting the bundle identifier in the PRODUCT_BUNDLE_IDENTIFIER build variable and setting CFBundleIdentifier to that variable in Info.plist. As of Xcode 8, CLANG_WARN_INFINITE_RECURSION and CLANG_WARN_SUSPICIOUS_MOVE are recommended settings.
-
Chris Bracken authored
As of Xcode 7, Apple recommends setting CFBundleIdentifier to $(PRODUCT_BUNDLE_IDENTIFIER).
-
Adam Barth authored
The spec forbids persistent bottom sheets from overlapping the app bar. There are also some fancy scroll-linked effects that we're supposed to do with persistent bottom sheets, but those will need to wait for another patch. Fixes #5143
-
Dragoș Tiselice authored
The former horitzontal alignment in the expansion panels demo in the Gallery was center instead of left. Fixes #6049.
-
David Yang authored
* Adding reference to Flutter-website Text Input guide in API docs for Input * Grammar * PR fixes
-
Devon Carew authored
* fix an encoding issue with calling adb shell getprop * move code in catch block * add a test * switch to LATIN1 encoding
-
Adam Barth authored
Previously, we were getting double padding: both inside and outside the button. This patch moves all the padding inside the button so that the whole region is hittable and the text is positioned correctly. Fixes #6059
-
Ian Hickson authored
-
Jason Simmons authored
-
Ian Hickson authored
This requires all AnimationController objects to be given a TickerProvider, a class that can create the Ticker. It also provides some nice mixins for people who want to have their State provide a TickerProvider. And a schedulerTickerProvider for those cases where you just want to see your battery burn. Also, we now enforce destruction order for elements.
-
Matt Perry authored
Fixes https://github.com/flutter/flutter/issues/6011
-
Seth Ladd authored
-
Ian Hickson authored
This silences an assertion that fired when reparenting a widget with a global key inside a LayoutBuilder callback when that callback also happened to call setState (directly or indirectly) on that widget. Normally such setStates are considered ok since we know we haven't cleaned that subtree yet, but we were not correctly handling the case where the list needed resorting in that situation.
-
Devon Carew authored
-
- 25 Sep, 2016 1 commit
-
-
Seth Ladd authored
Closes https://github.com/flutter/flutter/issues/6037
-
- 24 Sep, 2016 2 commits
-
-
Adam Barth authored
This widget lets you apply an ImageFit to a child widget. Fixes #5830
-
Ian Hickson authored
The debugging logic was lagging behind the recent actual logic changes, especially around buildScope.
-
- 23 Sep, 2016 6 commits
-
-
Chris Bracken authored
With iOS 10, the syslog format changed from: Sep 23 16:04:17 cbracken-iPhone Runner[6188] <Info>: .* to: Sep 23 16:04:17 cbracken-iPhone Runner(libsystem_asl.dylib)[6188] <Info>: .* This updates the observatory port scraping to handle either case.
-
Seth Ladd authored
* For reals allow Gallery to be installed by Nexus 5, 5X * fix for long line
-
Dragoș Tiselice authored
Added a demo of BottomNavigation to the Gallery.
-
Devon Carew authored
-
Dan Rubel authored
-
Adam Barth authored
Switch our pubspec.yamls to using SDK sources so that we can have consistent source types when we depend on these packages from external packages using SDK sources.
-
- 22 Sep, 2016 9 commits
-
-
P.Y. Laligand authored
-
Ian Hickson authored
The way this was implemented is sketchy, especially in strong mode.
-
Dragoș Tiselice authored
Changed the fixed type to better support the dark theme.
-
Ian Hickson authored
Previously in some rather esoteric cases involving global keys reversing relative positions we would forget to build everyone.
-
Ian Hickson authored
We changed how `flutter run --release` works (it quits without showing logs now, since it can't tell when the app closes).
-
Ian Hickson authored
-
Dragoș Tiselice authored
When switching from shifting to fixed, the BottomNavigationBar no longer displays the old color of the background.
-
Dragoș Tiselice authored
-