浏览代码

enable search for all users

Neeraj Gupta 2 年之前
父节点
当前提交
06311ec646
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. 2 4
      lib/ui/status_bar_widget.dart

+ 2 - 4
lib/ui/status_bar_widget.dart

@@ -84,14 +84,12 @@ class _StatusBarWidgetState extends State<StatusBarWidget> {
             Positioned(
               right: 0,
               top: 0,
-              child: FeatureFlagService.instance.enableSearch()
-                  ? Container(
+              child: Container(
                       color:
                           Theme.of(context).colorScheme.defaultBackgroundColor,
                       height: kContainerHeight,
                       child: const SearchIconWidget(),
-                    )
-                  : const SizedBox(height: 36, width: 48),
+                    ),
             ),
           ],
         ),