add mobile switch language

This commit is contained in:
csf
2022-07-31 20:42:56 +08:00
parent 93e79b5234
commit 5658ce807e
6 changed files with 76 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ class DraggableChatWindow extends StatelessWidget {
height: height,
builder: (_, onPanUpdate) {
return isIOS
? chatPage
? ChatPage()
: Scaffold(
resizeToAvoidBottomInset: false,
appBar: CustomAppBar(
@@ -68,7 +68,7 @@ class DraggableChatWindow extends StatelessWidget {
),
),
),
body: chatPage,
body: ChatPage(),
);
});
}