- 01 May, 2018 1 commit
-
-
Adrian Secord authored
-
- 23 Apr, 2018 1 commit
-
-
Yegor authored
New a11y traversal: - sort direct sibling SemanticsNodes only - use new sorting algorithm - implement RTL - test semantics in traversal order by default - add AppBar traversal test - breaking: remove nextNodeId/previousNodeId from the framework - breaking: remove DebugSemanticsDumpOrder.geometricOrder
-
- 02 Apr, 2018 1 commit
-
-
Victor Choueiri authored
Added a call to debugCheckHasMaterial() at the start of TextField's build method.
-
- 19 Mar, 2018 1 commit
-
-
Yegor authored
* a11y: remove SemanticsSortOrder; sort locally only; semanticsOwner post-test check * update accessibility test framework - default nextNodeId/previousNodeId to -1 - stop treating null as opt-out from value testing - add `id`, `TestSemantics.root`, and `tags` to the suggested code in the TestSemantics failure message - fix a small bug with raw string escaping - update all tests accordingly * fix sortKey doc * prefer const over final
-
- 14 Mar, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 26 Feb, 2018 2 commits
-
-
Jason Simmons authored
-
Jason Simmons authored
libtxt is now the default text renderer
-
- 02 Feb, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 01 Feb, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 31 Jan, 2018 1 commit
-
-
Michael Goderbauer authored
With a little refactor and unification of how availability of copy/cut/paste is determined across platforms. Minor remaining issue: https://github.com/flutter/flutter/issues/14331. Fixes https://github.com/flutter/flutter/issues/13501.
-
- 26 Jan, 2018 1 commit
-
-
Michael Goderbauer authored
Roll engine to 7c34dfafc9acece1a9438f206bfbb0a9bedba3bf
-
- 25 Jan, 2018 1 commit
-
-
Michael Goderbauer authored
Framework side for https://github.com/flutter/engine/pull/4584 & https://github.com/flutter/engine/pull/4587. Also rolls engine to 4c82c566edf394a5cfc237a266aea5bd37a6c172.
-
- 23 Jan, 2018 1 commit
-
-
Michael Goderbauer authored
* scrolling node eleminated * remove second node * fix ids
-
- 19 Jan, 2018 1 commit
-
-
Ian Hickson authored
* Make FadeTransition more efficient * Update fade_transition_test.dart * Update proxy_box.dart
-
- 09 Jan, 2018 1 commit
-
-
Michael Goderbauer authored
to align with `SemanticsAction` and other enum-like types.
-
- 08 Jan, 2018 1 commit
-
-
Hans Muller authored
-
- 14 Nov, 2017 1 commit
-
-
Hans Muller authored
-
- 03 Nov, 2017 1 commit
-
-
Jason Simmons authored
Use TextPainter.preferredLineHeight to estimate line height for Cupertino selection handles (#12833) Fixes https://github.com/flutter/flutter/issues/12046
-
- 02 Nov, 2017 2 commits
-
-
Greg Spencer authored
This fixes the assumption that InputDecorator had where it expected baseStyle to be a complete style. Now it merges the baseStyle with the subhead style instead of substituting it entirely. This fixes #12832.
-
Michael Goderbauer authored
* Identify text fields as such to a11y * focus * make travis happy * review comments
-
- 24 Oct, 2017 1 commit
-
-
Greg Spencer authored
This adds an optional character counter and maxLength parameter to the TextField, as described in the Material Design Spec. The counter text and style in the input decorator may be specified, but will default to the "right thing" if not specified, where the "right thing" is a counter that looks like "3 / 10" (if there are three characters entered into a field where maxLength is set to 10). To limit the number of characters entered, I created a LengthLimitingTextFormatter that will limit the number of characters (Unicode runes) in the input, which can be used independently. The formatter is applied after the other formatters supplied (if any). Even if there is no decorator, the text field will limit the number of characters input if maxLength is set. If maxLengthEnforced is set to false (it defaults to true), then the max length will not be enforced. In that case, if the text exceeds the length, then the counter will turn red, and it will make the divider turn red.
-
- 21 Oct, 2017 1 commit
-
-
Yegor authored
* Theme provides all TextStyle properties * match field declaration order in the test * Theme.of returns text style with inherit == false * change TextStyle.inherit logic; docs * add TextStyle.debugLabel * address comments * add debug labels to Typography text styles
-
- 20 Oct, 2017 1 commit
-
-
Hans Muller authored
-
- 24 Sep, 2017 1 commit
-
-
Ian Hickson authored
-
- 22 Sep, 2017 1 commit
-
-
Yegor authored
* introduce localized text geometry in MaterialLocalizations * remove geometry from color text themes * fix merge conflict * optional Localizations * fix fallback; test; docs
-
- 20 Sep, 2017 1 commit
-
-
Chris Bracken authored
Correctly handle the case where the TextEditingController associated with a TextField is set to null. Due to a typo (= vs ==), previously this was a no-op and the existing TextEditingController was retained, rather than copied.
-
- 07 Sep, 2017 2 commits
-
-
Hans Muller authored
-
Ian Hickson authored
-
- 30 Aug, 2017 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/11817
-
- 28 Aug, 2017 1 commit
-
-
Ian Hickson authored
* Introduce a Directionality inherited widget which sets the ambient LTR vs RTL mode (defaulting to null, which means you cannot use directionality-influenced values). * Make it possible to configure Padding (including Container.padding and Container.margin) using a directionality-agnostic EdgeInsets variant. * Provide textDirection and verticalDirection controls on Row and Column to make them RTL-aware. * Introduce a variant of FractionalOffset based on the EdgeInsets variant. Not yet actually used. * Fix all the tests that depended on Row defaulting to LTR.
-
- 30 Jun, 2017 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/11041
-
- 23 Jun, 2017 2 commits
-
-
Michael Goderbauer authored
* Provide haptic/acoustic feedback for tap & long-press on Android * review comments * fixed example code * review comments * comment fix
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/10911
-
- 20 Jun, 2017 2 commits
-
-
Ian Hickson authored
Introduce CompositedTransformTarget and CompositedTransformFollower widgets, corresponding render objects, and corresponding layers. Adjust the way text fields work to use this. Various changes I needed to debug the issues that came up.
-
Hans Muller authored
-
- 19 Jun, 2017 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/10681
-
- 14 Jun, 2017 1 commit
-
-
gspencergoog authored
* Prefix and Suffix support for TextFields * Adding Tests * Removing spurious newline. * Fixing a small problem with the test * Review Changes
-
- 13 Jun, 2017 1 commit
-
-
Ian Hickson authored
-
- 31 May, 2017 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/9923
-
- 28 Apr, 2017 1 commit
-
-
xster authored
* Add a text formatter interface used by EditingText. Provide some default implementations. * self nits * Handle -1 selection offsets * review notes * simplify regular expression * Add whitelisting formatters. Use a custom phone number formatter in text demo. * review notes * not being able to addAll(null) is pretty annoying * review notes * partial tests * Add tests * didn’t end up needing mockito * move to services
-