mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
96 lines
2.8 KiB
Dart
96 lines
2.8 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.
|
|
|
|
// Flutter code sample for ElevatedButton
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(const ButtonApp());
|
|
}
|
|
|
|
class ButtonApp extends StatelessWidget {
|
|
const ButtonApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
theme: ThemeData(colorSchemeSeed: const Color(0xff6750a4), useMaterial3: true),
|
|
title: 'Button Types',
|
|
home: const Scaffold(
|
|
body: ButtonTypesExample(),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ButtonTypesExample extends StatelessWidget {
|
|
const ButtonTypesExample({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(4.0),
|
|
child: Row(
|
|
children: const <Widget>[
|
|
Spacer(),
|
|
ButtonTypesGroup(enabled: true),
|
|
ButtonTypesGroup(enabled: false),
|
|
Spacer(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ButtonTypesGroup extends StatelessWidget {
|
|
const ButtonTypesGroup({ super.key, required this.enabled });
|
|
|
|
final bool enabled;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final VoidCallback? onPressed = enabled ? () {} : null;
|
|
return Padding(
|
|
padding: const EdgeInsets.all(4.0),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
children: <Widget>[
|
|
ElevatedButton(onPressed: onPressed, child: const Text('Elevated')),
|
|
|
|
// Use an ElevatedButton with specific style to implement the
|
|
// 'Filled' type.
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
// Foreground color
|
|
onPrimary: Theme.of(context).colorScheme.onPrimary,
|
|
// Background color
|
|
primary: Theme.of(context).colorScheme.primary,
|
|
).copyWith(elevation: ButtonStyleButton.allOrNull(0.0)),
|
|
onPressed: onPressed,
|
|
child: const Text('Filled'),
|
|
),
|
|
|
|
// Use an ElevatedButton with specific style to implement the
|
|
// 'Filled Tonal' type.
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
// Foreground color
|
|
onPrimary: Theme.of(context).colorScheme.onSecondaryContainer,
|
|
// Background color
|
|
primary: Theme.of(context).colorScheme.secondaryContainer,
|
|
).copyWith(elevation: ButtonStyleButton.allOrNull(0.0)),
|
|
onPressed: onPressed,
|
|
child: const Text('Filled Tonal'),
|
|
),
|
|
|
|
OutlinedButton(onPressed: onPressed, child: const Text('Outlined')),
|
|
|
|
TextButton(onPressed: onPressed, child: const Text('Text')),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|