Compare commits
2 Commits
cd8cac9a97
...
8ebc6e1928
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8ebc6e1928 | ||
|
|
e9505b37d1 |
@ -119,6 +119,14 @@ class _ActivityListScreenState extends State<ActivityListScreen> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
// When showing messages or profile, use their own Scaffold directly
|
||||||
|
if (_selectedIndex == 3 || _selectedIndex == 4) {
|
||||||
|
return Scaffold(
|
||||||
|
backgroundColor: const Color(0xFFFFF8F0),
|
||||||
|
body: _buildBody(),
|
||||||
|
bottomNavigationBar: _buildBottomNavigationBar(),
|
||||||
|
);
|
||||||
|
}
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: const Color(0xFFFFF8F0),
|
backgroundColor: const Color(0xFFFFF8F0),
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class MainScreen extends StatefulWidget {
|
|||||||
class _MainScreenState extends State<MainScreen> {
|
class _MainScreenState extends State<MainScreen> {
|
||||||
int _currentIndex = 0;
|
int _currentIndex = 0;
|
||||||
|
|
||||||
final _screens = const [
|
final _screens = [
|
||||||
HomeScreen(),
|
HomeScreen(),
|
||||||
ServicesScreen(),
|
ServicesScreen(),
|
||||||
AiChatScreen(),
|
AiChatScreen(),
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
name: banxiang_app
|
name: banxiang_app
|
||||||
description: 伴享
|
description: 伴享
|
||||||
version: 1.1.8+10
|
version: 1.1.9+11
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.0 <4.0.0'
|
sdk: '>=3.0.0 <4.0.0'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user