Unverified Commit 70aa0457 authored by Justin McCandless's avatar Justin McCandless Committed by GitHub

Autocomplete dartpad examples fix (#77863)

Fixes the dartpad examples on the docs site.
parent 637fb5b9
...@@ -14,15 +14,33 @@ import 'text_form_field.dart'; ...@@ -14,15 +14,33 @@ import 'text_form_field.dart';
/// This example shows how to create a very basic Autocomplete widget using the /// This example shows how to create a very basic Autocomplete widget using the
/// default UI. /// default UI.
/// ///
/// ```dart imports /// ```dart main
/// import 'package:flutter/material.dart'; /// import 'package:flutter/material.dart';
/// ```
/// ///
/// ```dart /// void main() => runApp(const AutocompleteExampleApp());
///
/// class AutocompleteExampleApp extends StatelessWidget {
/// const AutocompleteExampleApp({Key? key}) : super(key: key);
///
/// @override
/// Widget build(BuildContext context) {
/// return MaterialApp(
/// home: Scaffold(
/// appBar: AppBar(
/// title: const Text('Autocomplete Basic'),
/// ),
/// body: const Center(
/// child: AutocompleteBasicExample(),
/// ),
/// ),
/// );
/// }
/// }
///
/// class AutocompleteBasicExample extends StatelessWidget { /// class AutocompleteBasicExample extends StatelessWidget {
/// AutocompleteBasicExample({Key? key}) : super(key: key); /// const AutocompleteBasicExample({Key? key}) : super(key: key);
/// ///
/// final List<String> _kOptions = <String>[ /// static const List<String> _kOptions = <String>[
/// 'aardvark', /// 'aardvark',
/// 'bobcat', /// 'bobcat',
/// 'chameleon', /// 'chameleon',
...@@ -52,11 +70,29 @@ import 'text_form_field.dart'; ...@@ -52,11 +70,29 @@ import 'text_form_field.dart';
/// This example shows how to create an Autocomplete widget with a custom type. /// This example shows how to create an Autocomplete widget with a custom type.
/// Try searching with text from the name or email field. /// Try searching with text from the name or email field.
/// ///
/// ```dart imports /// ```dart main
/// import 'package:flutter/material.dart'; /// import 'package:flutter/material.dart';
/// ```
/// ///
/// ```dart /// void main() => runApp(const AutocompleteExampleApp());
///
/// class AutocompleteExampleApp extends StatelessWidget {
/// const AutocompleteExampleApp({Key? key}) : super(key: key);
///
/// @override
/// Widget build(BuildContext context) {
/// return MaterialApp(
/// home: Scaffold(
/// appBar: AppBar(
/// title: const Text('Autocomplete Basic User'),
/// ),
/// body: const Center(
/// child: AutocompleteBasicUserExample(),
/// ),
/// ),
/// );
/// }
/// }
///
/// @immutable /// @immutable
/// class User { /// class User {
/// const User({ /// const User({
......
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