調整版面

This commit is contained in:
jasonchenwork 2025-06-03 10:08:13 +08:00
parent 50e2e98fcb
commit 1f349f2887
3 changed files with 4 additions and 47 deletions

View File

@ -108,22 +108,6 @@ class _EditProfilePageState extends State<EditProfilePage> {
],
),
),
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
items: const [
BottomNavigationBarItem(icon: Icon(Icons.home), label: '首頁'),
BottomNavigationBarItem(
icon: Icon(Icons.door_front_door),
label: '出入',
),
BottomNavigationBarItem(icon: Icon(Icons.message), label: '訊息'),
BottomNavigationBarItem(icon: Icon(Icons.person), label: '住戶'),
],
currentIndex: 3,
onTap: (index) {
// Add navigation logic here if needed
},
),
);
}

View File

@ -153,7 +153,10 @@ class _MessagePageState extends State<MessagePage> {
borderRadius: BorderRadius.circular(20),
),
),
child: const Text('發送'),
child: const Text(
'發送',
style: TextStyle(fontSize: 16, color: Colors.white),
),
),
],
),

View File

@ -1,30 +0,0 @@
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:communityapp/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}