Fix logical error in TimePickerDialog - the RenderObject forgets to update fields (#112040)
This commit is contained in:
parent
6cf3c259d4
commit
d93208a60b
@ -808,7 +808,8 @@ class _CupertinoDialogRenderWidget extends RenderObjectWidget {
|
||||
void updateRenderObject(BuildContext context, _RenderCupertinoDialog renderObject) {
|
||||
renderObject
|
||||
..isInAccessibilityMode = _isInAccessibilityMode(context) && !isActionSheet
|
||||
..dividerColor = CupertinoDynamicColor.resolve(dividerColor, context);
|
||||
..dividerColor = CupertinoDynamicColor.resolve(dividerColor, context)
|
||||
..isActionSheet = isActionSheet;
|
||||
}
|
||||
|
||||
@override
|
||||
|
Loading…
x
Reference in New Issue
Block a user