Unverified Commit bde6b162 authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Add fix for RectangularSliderTrackShape (#78658)

parent 00592ceb
...@@ -12,6 +12,17 @@ ...@@ -12,6 +12,17 @@
version: 1 version: 1
transforms: transforms:
# Changes made in https://github.com/flutter/flutter/pull/65246
- title: "Remove 'disabledThumbGapWidth'"
date: 2020-11-17
element:
uris: [ 'material.dart' ]
constructor: ''
inClass: 'RectangularSliderTrackShape'
changes:
- kind: 'removeParameter'
name: 'disabledThumbGapWidth'
# Changes made in https://github.com/flutter/flutter/pull/46115 # Changes made in https://github.com/flutter/flutter/pull/46115
- title: "Migrate to 'floatingLabelBehavior'" - title: "Migrate to 'floatingLabelBehavior'"
date: 2020-01-15 date: 2020-01-15
......
...@@ -179,6 +179,9 @@ void main() { ...@@ -179,6 +179,9 @@ void main() {
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(title: myTitle); const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(title: myTitle);
bottomNavigationBarItem.title; bottomNavigationBarItem.title;
// Changes made in https://github.com/flutter/flutter/pull/65246
RectangularSliderTrackShape(disabledThumbGapWidth: 2.0);
// Changes made in https://github.com/flutter/flutter/pull/46115 // Changes made in https://github.com/flutter/flutter/pull/46115
const InputDecoration inputDecoration = InputDecoration(hasFloatingPlaceholder: true); const InputDecoration inputDecoration = InputDecoration(hasFloatingPlaceholder: true);
InputDecoration(hasFloatingPlaceholder: false); InputDecoration(hasFloatingPlaceholder: false);
...@@ -191,6 +194,4 @@ void main() { ...@@ -191,6 +194,4 @@ void main() {
InputDecorationTheme(hasFloatingPlaceholder: false); InputDecorationTheme(hasFloatingPlaceholder: false);
InputDecorationTheme(); InputDecorationTheme();
inputDecorationTheme.hasFloatingPlaceholder; inputDecorationTheme.hasFloatingPlaceholder;
} }
...@@ -179,6 +179,9 @@ void main() { ...@@ -179,6 +179,9 @@ void main() {
const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(label: myTitle); const BottomNavigationBarItem bottomNavigationBarItem = BottomNavigationBarItem(label: myTitle);
bottomNavigationBarItem.label; bottomNavigationBarItem.label;
// Changes made in https://github.com/flutter/flutter/pull/65246
RectangularSliderTrackShape();
// Changes made in https://github.com/flutter/flutter/pull/46115 // Changes made in https://github.com/flutter/flutter/pull/46115
const InputDecoration inputDecoration = InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.auto); const InputDecoration inputDecoration = InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.auto);
InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.never); InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.never);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment