mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This re-lands the Focus changes in #30040. Correctness changes in routes.dart, and removes the automatic requesting of focus on reparent when there is no current focus, which caused undesirable selections. Addresses #11344, #1608, #13264, and #1678 Fixes #30084 Fixes #26704
37 lines
735 B
Cheetah
37 lines
735 B
Cheetah
// Flutter code sample for {{id}}
|
|
|
|
{{description}}
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
{{code-imports}}
|
|
|
|
void main() => runApp(new MyApp());
|
|
|
|
/// This Widget is the main application widget.
|
|
class MyApp extends StatelessWidget {
|
|
static const String _title = 'Flutter Code Sample';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: _title,
|
|
home: Scaffold(
|
|
appBar: AppBar(title: const Text(_title)),
|
|
body: MyStatelessWidget(),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
{{code-preamble}}
|
|
|
|
/// This is the stateless widget that the main application instantiates.
|
|
class MyStatelessWidget extends StatelessWidget {
|
|
MyStatelessWidget({Key key}) : super(key: key);
|
|
|
|
@override
|
|
{{code}}
|
|
}
|