mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
57 lines
1.5 KiB
Dart
57 lines
1.5 KiB
Dart
// 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';
|
|
|
|
/// Flutter code sample for [ElevatedButton].
|
|
|
|
void main() => runApp(const ElevatedButtonExampleApp());
|
|
|
|
class ElevatedButtonExampleApp extends StatelessWidget {
|
|
const ElevatedButtonExampleApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: Scaffold(
|
|
appBar: AppBar(title: const Text('ElevatedButton Sample')),
|
|
body: const ElevatedButtonExample(),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ElevatedButtonExample extends StatefulWidget {
|
|
const ElevatedButtonExample({super.key});
|
|
|
|
@override
|
|
State<ElevatedButtonExample> createState() => _ElevatedButtonExampleState();
|
|
}
|
|
|
|
class _ElevatedButtonExampleState extends State<ElevatedButtonExample> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final ButtonStyle style = ElevatedButton.styleFrom(textStyle: const TextStyle(fontSize: 20));
|
|
|
|
return Center(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
ElevatedButton(
|
|
style: style,
|
|
onPressed: null,
|
|
child: const Text('Disabled'),
|
|
),
|
|
const SizedBox(height: 30),
|
|
ElevatedButton(
|
|
style: style,
|
|
onPressed: () {},
|
|
child: const Text('Enabled'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|