Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 16 additions & 27 deletions lib/pages/notice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,45 +69,34 @@ class _NotificationPageState extends State<NotificationPage> {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Opacity(
opacity: 0,
child: IconButton(
icon: const Icon(Icons.filter_list),
onPressed: () {
_showFilterDialog();
},
Expanded(
child: Align(
alignment: Alignment.centerLeft,
child: Text(
'選択されたフィルター: $_selectedFilter',
style: const TextStyle(fontSize: 14, color: Colors.grey),
),
),
),
const Text(
"通知",
style: TextStyle(
fontSize: 16,
Expanded(
child: Align(
alignment: Alignment.centerRight,
child: IconButton(
icon: const Icon(Icons.filter_list),
onPressed: () {
_showFilterDialog();
},
),
),
),
IconButton(
icon: const Icon(Icons.filter_list),
onPressed: () {
_showFilterDialog();
},
),
],
),
const Divider(
height: 16,
thickness: 1,
color: Colors.grey,
),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Text(
'選択されたフィルター: $_selectedFilter',
style: const TextStyle(fontSize: 12, color: Colors.grey),
),
],
),
const Card(
color: Color(0xFFF4F6FF),
child: Padding(
Expand Down
4 changes: 4 additions & 0 deletions lib/pages/password_forget.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:sysdev_suretti/pages/login.dart';
import 'package:sysdev_suretti/pages/new_password.dart';

class PasswordForgetPage extends StatefulWidget {
const PasswordForgetPage({super.key});
Expand Down Expand Up @@ -27,6 +28,9 @@ class _PasswordForgetPageState extends State<PasswordForgetPage> {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("認証メールを送信しました。")),
);
Navigator.of(context).push(MaterialPageRoute(builder: (context) {
return const NewPasswordPage();
}));
}
});
}
Expand Down