1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
This commit is contained in:
Brett Morgan
2022-05-11 12:48:11 -07:00
committed by GitHub
parent fb00d0a102
commit ccd68f34e2
242 changed files with 1719 additions and 1430 deletions

View File

@@ -10,7 +10,7 @@ class AutofillDemo extends StatefulWidget {
const AutofillDemo({Key? key}) : super(key: key);
@override
_AutofillDemoState createState() => _AutofillDemoState();
State<AutofillDemo> createState() => _AutofillDemoState();
}
class _AutofillDemoState extends State<AutofillDemo> {

View File

@@ -9,7 +9,7 @@ class FormWidgetsDemo extends StatefulWidget {
const FormWidgetsDemo({Key? key}) : super(key: key);
@override
_FormWidgetsDemoState createState() => _FormWidgetsDemoState();
State<FormWidgetsDemo> createState() => _FormWidgetsDemoState();
}
class _FormWidgetsDemoState extends State<FormWidgetsDemo> {
@@ -168,7 +168,7 @@ class _FormDatePicker extends StatefulWidget {
});
@override
_FormDatePickerState createState() => _FormDatePickerState();
State<_FormDatePicker> createState() => _FormDatePickerState();
}
class _FormDatePickerState extends State<_FormDatePicker> {

View File

@@ -35,7 +35,7 @@ class SignInHttpDemo extends StatefulWidget {
}) : super(key: key);
@override
_SignInHttpDemoState createState() => _SignInHttpDemoState();
State<SignInHttpDemo> createState() => _SignInHttpDemoState();
}
class _SignInHttpDemoState extends State<SignInHttpDemo> {

View File

@@ -9,7 +9,7 @@ class FormValidationDemo extends StatefulWidget {
const FormValidationDemo({Key? key}) : super(key: key);
@override
_FormValidationDemoState createState() => _FormValidationDemoState();
State<FormValidationDemo> createState() => _FormValidationDemoState();
}
class _FormValidationDemoState extends State<FormValidationDemo> {

View File

@@ -6,6 +6,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
window_size
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
)
set(PLUGIN_BUNDLED_LIBRARIES)
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -14,3 +17,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)

View File

@@ -91,7 +91,7 @@ packages:
name: built_value
url: "https://pub.dartlang.org"
source: hosted
version: "8.2.3"
version: "8.3.0"
characters:
dependency: transitive
description:
@@ -201,7 +201,7 @@ packages:
name: flutter_lints
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
version: "2.0.1"
flutter_test:
dependency: "direct dev"
description: flutter
@@ -290,7 +290,7 @@ packages:
name: lints
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "2.0.0"
logging:
dependency: transitive
description:
@@ -495,4 +495,4 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.17.0-0 <3.0.0"
dart: ">=2.17.0-206.0.dev <3.0.0"

View File

@@ -4,7 +4,7 @@ publish_to: "none"
version: 1.0.0+1
environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.17.0-0 <3.0.0"
dependencies:
flutter:
@@ -24,7 +24,7 @@ dev_dependencies:
sdk: flutter
json_serializable: ^6.2.0
build_runner: ^2.1.8
flutter_lints: ^1.0.0
flutter_lints: ^2.0.1
flutter:
uses-material-design: true