Skip to content

Commit

Permalink
Убрала прозрачность в navbar для единообразия
Browse files Browse the repository at this point in the history
  • Loading branch information
SokolovaDaria committed Oct 5, 2024
1 parent 3b07dc0 commit e4d86ba
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions lib/ui/views/main_page/main_page_navigation_bar.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:unn_mobile/core/viewmodels/main_page_view_model.dart';
Expand All @@ -18,17 +17,13 @@ class MainPageNavigationBar extends StatelessWidget {
return Stack(
alignment: Alignment.bottomCenter,
children: [
ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(
sigmaX: 6.0,
sigmaY: 6.0,
),
child: Container(
width: double.maxFinite,
height: 60,
color: Colors.transparent,
),
Positioned(
top: 0,
left: 0,
right: 0,
child: Container(
height: 0.3,
color: Colors.grey.withOpacity(0.5),
),
),
NavigationBar(
Expand Down

0 comments on commit e4d86ba

Please sign in to comment.