- 04 Feb, 2017 5 commits
-
-
Ian Hickson authored
-
Chris Bracken authored
Allows for better testing of functions that throw ToolExit to bail out.
-
Adam Barth authored
This patch passes down the viewportMainAxisExtent so that RenderSliverPage can pick it up and size its children appropriately.
-
Ian Hickson authored
This prepares us for a CustomScrollView that takes slivers.
-
Adam Barth authored
This patch makes Scrollable2.ensureVisible with SingleChildScrollView. A future patch will extend the implementation to work with slivers. (Although the patch does include some of the infrastructure for that part of the implementation as well.)
-
- 03 Feb, 2017 13 commits
-
-
Jason Simmons authored
-
Adam Barth authored
This patch makes a number of changes to how you can configure a Scrollable2: - The ScrollPhysics is now responsible for creating the ScrollPosition. You can override the ScrollPhysics by supplying a `physics` argument to `Scrollable`, and the new physics you supply will be applied to the default physics inherited from the ScrollBehavior. - This patch removes the ScrollPosition/AbsoluteScrollPosition split as all clients were operating in pixels anyway and the split made the code very difficult to follow. - ScrollPosition no longer depends directly on Scrollable2State. Instead, it depends on an abstract interface that Scrollable2State implements. This change has two benefits: a) It removes the circular dependency between ScrollPosition and Scrollable2State, which lets us split the code for these classes (and several other classes that got wrapped up in that cycle) into separate libraries for easier maintenance. b) ScrollPosition is no longer bound to Scrollable2, which means you could use the behavior machinery to drive other sorts of widgets. For example, we could use it to drive Scrollabe1 if we wanted.
-
xster authored
-
Ian Hickson authored
...and fix bugs that the tests uncovered. WRITE TEST FIND BUG
-
Chris Bracken authored
And fix some un-grammatical language below.
-
Chris Bracken authored
* Detects iPad 2 and iPad Retina as unsupported devices. * Simplifies blacklisting logic. * Minor improvements to error messages. * Added unit tests.
-
Chris Bracken authored
-
Adam Barth authored
This property is wired up to anything and it isn't used. We'll need to find a better way for clients to control the scroll offset.
-
Chris Bracken authored
Subclassing FlutterAppDelegate is not required for real-world apps, but it's what 'flutter create' generates, and applies the default behaviours that most real-world apps will want.
-
Chris Bracken authored
On iOS, generate a FlutterAppDelegate subclass for the application delegate. This avoids touchesBegan:withEvent boilerplate to handle status bar taps.
-
Chris Bracken authored
-
Adam Barth authored
There aren't any interdependencies with the rest of sliver.dart, and that file is already quite complex.
-
Adam Barth authored
This widget is a start towards replacing PageableList. There are still a number of features that we'll need to add before this widget can replace PageableList.
-
- 02 Feb, 2017 22 commits
-
-
Adam Barth authored
IntelliJ seems to really want these files to have these changes.
-
Ian Hickson authored
This allows us, for example, to wait for the slow mode banner to have been removed from the screen before triggering a screen shot.
-
Michael Goderbauer authored
-
Hans Muller authored
-
Ian Hickson authored
Also, tweak Banner a bit so you can set the color and text style. Also, cache the text painter between paints.
-
Ian Hickson authored
-
Chris Bracken authored
By default, pass status bar taps to the root view controller in generated Flutter apps. Developers should customise as necesary if they later create one or more alternate FlutterViewControllers that they'd like to forward these to.
-
Jason Simmons authored
If the tool is started immediately after a previous run of the tool, then the most recent log timestamp may come from the previous run's logs. The new instance of the tool should not print those logs. This was happening during runs of the microbenchmark script.
-
xster authored
- Out of bound days are disabled and untappable - Out of bounds months can't be navigated to
-
Michael Goderbauer authored
With this commit `flutter run --release` and `flutter run --profile` is fully supported on Windows.
-
Luke authored
* fix issue detecting ios-deploy. fix issue matching IntelliJ Ultimate on Mac * refactor directory navigation code
-
Mikkel Nygaard Ravn authored
Added three widgets that interact with Futures and Streams.
-
Adam Barth authored
Fixes #7788
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/5066
-
Ian Hickson authored
Add an "s" command to `flutter run` which takes a screenshot. Make that comment turn off the slow mode banner.
-
Ian Hickson authored
-
Michael Goderbauer authored
-
Chris Bracken authored
* Add doctor check for Python 'six' module Required as part of Xcode lldb module. In all likelihood, if we encounter this situation, the developer is using a custom Python install (e.g., via MacPorts or Homebrew).
-
Chinmay Garde authored
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
Chris Bracken authored
ios-deploy -h/--help returns a non-zero exit code.
-