| // Copyright 2014 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'package:flutter/material.dart'; |
| |
| void main() { |
| // Changes made in https://github.com/flutter/flutter/pull/66482 |
| ThemeData(textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red)); |
| ThemeData(textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue)); |
| ThemeData(textSelectionTheme: TextSelectionThemeData(selectionHandleColor: Colors.yellow)); |
| ThemeData(); |
| ThemeData(textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red)); |
| ThemeData(textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue)); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(selectionHandleColor: Colors.yellow)); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData(error: ''); |
| ThemeData.raw(error: ''); |
| ThemeData.raw(textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red)); |
| ThemeData.raw(textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue)); |
| ThemeData.raw(textSelectionTheme: TextSelectionThemeData(selectionHandleColor: Colors.yellow)); |
| ThemeData.raw(); |
| ThemeData.raw(textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red)); |
| ThemeData.raw(textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue)); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(selectionHandleColor: Colors.yellow)); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| ThemeData.raw( |
| textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.blue, selectionColor: Colors.red, selectionHandleColor: Colors.yellow,), |
| ); |
| |
| // Changes made in https://github.com/flutter/flutter/pull/81336 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(colorScheme: ColorScheme.fromSwatch().copyWith(secondary: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(secondary: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(secondary: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, secondary: Colors.red)); |
| themeData = ThemeData(error: ''); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.fromSwatch().copyWith(secondary: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(secondary: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(secondary: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, secondary: Colors.red)); |
| themeData = ThemeData.raw(error: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.fromSwatch().copyWith(secondary: Colors.red)); |
| themeData = themeData.copyWith(error: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(secondary: Colors.red)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(secondary: Colors.red)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, secondary: Colors.red)); |
| themeData.colorScheme.secondary; |
| |
| // Changes made in https://github.com/flutter/flutter/pull/81336 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.accentColorBrightness; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/81336 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.accentTextTheme; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/81336 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.accentIconTheme; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/81336 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.buttonColor; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/87281 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.fixTextFieldOutlineLabel; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/93396 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.primaryColorBrightness; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/97972 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| )); |
| themeData = ThemeData( |
| checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), |
| ); |
| themeData = ThemeData.raw(checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| )); |
| themeData = ThemeData.raw( |
| checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), |
| ); |
| themeData = themeData.copyWith(checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| )); |
| themeData = themeData.copyWith( |
| checkboxTheme: CheckboxThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), radioTheme: RadioThemeData( |
| fillColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), switchTheme: SwitchThemeData( |
| thumbColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| trackColor: MaterialStateProperty.resolveWith<Color?>((Set<MaterialState> states) { |
| if (states.contains(MaterialState.disabled)) { |
| return null; |
| } |
| if (states.contains(MaterialState.selected)) { |
| return Colors.black; |
| } |
| return null; |
| }), |
| ), |
| ); |
| themeData.toggleableActiveColor; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/109070 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(); |
| themeData = ThemeData.raw(); |
| themeData = themeData.copyWith(); |
| themeData.selectedRowColor; // Removing field reference not supported. |
| |
| // Changes made in https://github.com/flutter/flutter/pull/110162 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(colorScheme: ColorScheme(error: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(error: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(error: Colors.red)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, error: Colors.red)); |
| themeData = ThemeData(otherParam: ''); |
| themeData = ThemeData.raw(colorScheme: ColorScheme(error: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(error: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(error: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, error: Colors.red)); |
| themeData = ThemeData.raw(otherParam: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme(error: Colors.red)); |
| themeData = themeData.copyWith(otherParam: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(error: Colors.red)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(error: Colors.red)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, error: Colors.red)); |
| themeData.colorScheme.error; |
| |
| // Changes made in https://github.com/flutter/flutter/pull/110162 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(colorScheme: ColorScheme(surface: Colors.grey)); |
| themeData = ThemeData(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(surface: Colors.grey)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(surface: Colors.grey)); |
| themeData = ThemeData(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, surface: Colors.grey)); |
| themeData = ThemeData(otherParam: ''); |
| themeData = ThemeData.raw(colorScheme: ColorScheme(surface: Colors.grey)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(surface: Colors.grey)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(surface: Colors.grey)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, surface: Colors.grey)); |
| themeData = ThemeData.raw(otherParam: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme(surface: Colors.grey)); |
| themeData = themeData.copyWith(otherParam: ''); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue).copyWith(surface: Colors.grey)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(surface: Colors.grey)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme.light().copyWith(primarySwatch: Colors.blue, surface: Colors.grey)); |
| themeData.colorScheme.surface; |
| |
| // Changes made in https://github.com/flutter/flutter/pull/110162 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(colorScheme: ColorScheme(surface: Colors.grey).copyWith(error: Colors.red)); |
| themeData = ThemeData.raw(colorScheme: ColorScheme(surface: Colors.grey).copyWith(error: Colors.red)); |
| themeData = themeData.copyWith(colorScheme: ColorScheme(surface: Colors.grey).copyWith(error: Colors.red)); |
| |
| // Changes made in https://github.com/flutter/flutter/pull/111080 |
| ThemeData themeData = ThemeData(); |
| themeData = ThemeData(bottomAppBarTheme: BottomAppBarTheme(color: Colors.green)); |
| themeData = ThemeData.raw(bottomAppBarTheme: BottomAppBarTheme(color: Colors.green)); |
| themeData = ThemeData.copyWith(bottomAppBarTheme: BottomAppBarTheme(color: Colors.green)); |
| |
| // Changes made in https://github.com/flutter/flutter/pull/131455 |
| ThemeData themeData = ThemeData.copyWith(); |
| } |