59 lines
2.0 KiB
Dart
59 lines
2.0 KiB
Dart
// Copyright (C) 2023 WYATT GROUP
|
|
// Please see the AUTHORS file for details.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:wyatt_ui_kit_example/buttons/file_selection_button/file_selection_buttons.dart';
|
|
import 'package:wyatt_ui_kit_example/buttons/flat_button/flat_buttons.dart';
|
|
import 'package:wyatt_ui_kit_example/buttons/simple_icon_button/simple_icon_buttons.dart';
|
|
import 'package:wyatt_ui_kit_example/buttons/symbol_button/symbol_buttons.dart';
|
|
import 'package:wyatt_ui_kit_example/demo_page.dart';
|
|
|
|
class Buttons extends DemoPage {
|
|
const Buttons({super.key});
|
|
|
|
@override
|
|
String get title => 'Buttons';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => ListView(
|
|
cacheExtent: 1000,
|
|
children: [
|
|
const Gap(20),
|
|
Align(
|
|
child: Text(
|
|
title,
|
|
style: Theme.of(context).textTheme.titleLarge,
|
|
),
|
|
),
|
|
const Gap(20),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: const [
|
|
FlatButtons(),
|
|
Gap(20),
|
|
SymbolButtons(),
|
|
Gap(20),
|
|
SimpleIconButtons(),
|
|
Gap(20),
|
|
FileSelectionButtons()
|
|
],
|
|
),
|
|
],
|
|
);
|
|
}
|