Fix web version
This commit is contained in:
parent
4dd31d961a
commit
a611e2a141
|
@ -23,7 +23,7 @@ class AdaptivePageLayout extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return OrientationBuilder(builder: (context, orientation) {
|
||||
if (orientation == Orientation.portrait || columnMode(context)) {
|
||||
if (orientation == Orientation.portrait || !columnMode(context)) {
|
||||
if (primaryPage == FocusPage.FIRST) {
|
||||
return firstScaffold;
|
||||
} else {
|
||||
|
|
|
@ -89,6 +89,7 @@ class _ChatListState extends State<ChatList> {
|
|||
onPressed: () => setState(() => searchMode = false),
|
||||
)
|
||||
: null,
|
||||
automaticallyImplyLeading: false,
|
||||
actions: searchMode
|
||||
? null
|
||||
: <Widget>[
|
||||
|
|
Loading…
Reference in a new issue