- 12 Feb, 2019 1 commit
-
-
KyleWong authored
-
- 11 Feb, 2019 3 commits
-
-
Hans Muller authored
-
Kate Lovett authored
* Fix for #26261. Changes CupertinoTextField's cursorColor to read from CupertinoTheme instead of prior default of activeBlue. CursorColor will still default to activeBlue for light theme and activeOrange for dark theme if a primary color has not been specified for the CupertinoTheme. * Reverted unnecessary changes in XCode file. * Updated text_field.dart per suggestions from @gspencergoog * Updated comments for cursorColor to reflect appropriate hyperlinks per @Hixie * Simplified cursorColor assignment per @xster * Added test in cupertino/text_field_test.dart to check for correct cursorColor based on CupertinoTheme per @Hixie & @xster.
-
Anthony authored
* Provide a simmplified API for skipping over slider thumb, overlay, and tick mark painting * doc fixes * comments * comments * comments * comments * comments * analyzer * comments
-
- 08 Feb, 2019 4 commits
-
-
Hans Muller authored
-
Greg Spencer authored
This adds support for logical and physical key information inside of RawKeyEvent. This allows developers to differentiate keys in a platform-agnostic way. They are able to tell the physical location of a key (PhysicalKeyboardKey) and a logical meaning of the key (LogicalKeyboardKey), as well as get notified of the character generated by the keypress. All of which is useful for handling keyboard shortcuts. This PR builds on the previous PR (#27620) which generated the key code mappings and definitions.
-
Hans Muller authored
-
xster authored
-
- 07 Feb, 2019 3 commits
-
-
xster authored
-
Alexander Ryzhov authored
-
Matt Carroll authored
-
- 06 Feb, 2019 6 commits
-
-
Hans Muller authored
These changes are **backwards incompatible**. Tests that verify OutlineButton visuals, for example golden image tests, will need to be updated.
-
Michael Goderbauer authored
-
xster authored
-
Greg Spencer authored
Before this, we had several places where an isReleaseMode was defined, all with the same definition. This just makes it more broadly visible to allow our users to use it, as well as creating debug and profile versions, and adding a device lab test for it. Since this is a const value, this makes it possible for a developer to easily mark blocks that can be removed at AOT compile time.
-
Marco Scannadinari authored
-
Anthony authored
* Add size configs for round default shapes, and add tests, for all shapes that can be sized without creating new custom shape painters
-
- 05 Feb, 2019 5 commits
-
-
Hans Muller authored
-
xster authored
-
Ian Hickson authored
This PR does two things: - It allows BottomAppBar to have a custom shape even when it doesn't have a notch. - It adds AutomaticNotchedShape, an adapter from ShapeBorder to NotchedShape.
-
Hans Muller authored
Updated focus handling in FocusManager et al and EditableText so that TextFields within nested FocusScopes can gain the focus and show the keybaord.
-
Matt Carroll authored
-
- 04 Feb, 2019 2 commits
-
-
Ian Hickson authored
* Crash when a TabBar is put in a BottomAppBar. * Tabs bugs (e.g. crash on transparent material) - Tabs would crash when placed on transparent Materials - Tabs would fail to render the child if an icon was specified
-
Gary Qian authored
Integrate Strut: Add StrutStyle, expose Strut API, wire up strut with dart:ui, Roll engine 31a7f4d..e7eb1c8 (7 commits) (#26332) Includes a breaking change to dart:ui ParagraphStyle where lineHeight is renamed to height for consistency with TextStyle.
-
- 03 Feb, 2019 1 commit
-
-
Ian Hickson authored
* Expose "center" on CustomScrollView * Also support anchor
-
- 01 Feb, 2019 6 commits
-
-
rami-a authored
Allow the theme to provide these values to Chips
-
Sahel Lucas authored
The new parameter defines the color of the checkbox's check mark. Default is (still) white.
-
Hans Muller authored
-
rami-a authored
Expose elevation on chips and allow for it to be customized by the developer.
-
Jacob Richman authored
-
Anthony authored
Create a slider shape for custom track, tick mark, and overlay painting, for the material slider.
-
- 31 Jan, 2019 1 commit
-
-
Ian Hickson authored
* Remove stray extra space * Add ImageStreamCompleter.hasListeners (and cleanup) This is mostly just some cleanup of stuff I ran into, but it makes `hasListeners` protected on `ImageStreamCompleter`, because otherwise there's no way to track if listeners are registered or not. * Address review comments
-
- 30 Jan, 2019 4 commits
-
-
rami-a authored
Add Material/Card borderOnForeground flag to allow border to be painted behind the child widget (#27297) In certain situations, a developer may require the border of a Material to be painted behind its child. For example a Card widget that has a full width image across the top half. In that scenario, the image should ideally be painted above the border with regards to z-position. This change exposes a flag on Material widget to achieve this behavior. Additionally, the same flag is exposed on Card widget to allow the Card widget to pass this down to its Material. I added a couple golden tests to verify this new behavior. Goldens are here: https://github.com/flutter/goldens/commit/46a3d26acbb1b0d72b6b02c30f03b9dbda7d5bdf
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
- 29 Jan, 2019 4 commits
-
-
akindone authored
-
Alexandre Ardhuin authored
-
Konstantin Scheglov authored
-
Greg Spencer authored
This implements support for hovering mouse pointers, so that mice connected to Android devices, and ChromeOS devices running Android apps will work properly. It teaches flutter_test about hover events, which required changing how they are created and used. Also modifies AnnotatedRegion to allow a region that can be located someplace other than just the origin. Along with tests for all of the above. Fixes #5504
-