|
|
|
@ -165,10 +165,7 @@ class _SpaceViewState extends State<SpaceView> {
|
|
|
|
|
final room = Matrix.of(context).client.getRoomById(widget.spaceId);
|
|
|
|
|
final displayname =
|
|
|
|
|
room?.getLocalizedDisplayname() ?? L10n.of(context)!.nothingFound;
|
|
|
|
|
return PopScope(
|
|
|
|
|
canPop: false,
|
|
|
|
|
onPopInvoked: (_) => widget.onBack(),
|
|
|
|
|
child: Scaffold(
|
|
|
|
|
return Scaffold(
|
|
|
|
|
appBar: AppBar(
|
|
|
|
|
leading: Center(
|
|
|
|
|
child: CloseButton(
|
|
|
|
@ -283,9 +280,8 @@ class _SpaceViewState extends State<SpaceView> {
|
|
|
|
|
onChanged: (_) => setState(() {}),
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
fillColor: Theme.of(context)
|
|
|
|
|
.colorScheme
|
|
|
|
|
.secondaryContainer,
|
|
|
|
|
fillColor:
|
|
|
|
|
Theme.of(context).colorScheme.secondaryContainer,
|
|
|
|
|
border: OutlineInputBorder(
|
|
|
|
|
borderSide: BorderSide.none,
|
|
|
|
|
borderRadius: BorderRadius.circular(99),
|
|
|
|
@ -473,7 +469,6 @@ class _SpaceViewState extends State<SpaceView> {
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|