Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
56 views

I have a Scaffold with extendBodyBehindAppBar: true because I want a blurred AppBar. The problem is that sometimes my body widget (inner) starts behind the AppBar instead of below it. Here is a ...
Abbosbek Ustaboyev's user avatar
1 vote
1 answer
478 views

I'm using the image_cropper package (version 9.1.0) in my Flutter app (Flutter version 3.27.2) to allow users to crop images. It works fine on most Android versions, but on Android 15 (API level 34), ...
SalmanNaghori's user avatar
0 votes
1 answer
65 views

I have a custom AppBar that has a preferredSize of 56px. I use this AppBar in my PageWrapper widget that looks like this: return Scaffold( extendBodyBehindAppBar: true, backgroundColor: ...
progNewbie's user avatar
  • 4,942
0 votes
1 answer
96 views

I am relatively new to Flutter and I am trying to add the new Material 3 Search Bar to my app along with a Drawer navigation but it's not working as expected. This is how it's appearing: The ...
Mervin Hemaraju's user avatar
0 votes
2 answers
55 views

I'm new to flutter, I'm currently learning, I'm trying to change the color of appbar but impossible. I followed a lot of leads but nothing works (it is transparent). I would like to have a left ...
Zako's user avatar
  • 11
-1 votes
2 answers
66 views

I am new to flutter and I am trying to create a simple app with a "static" that doesn't change between pages. I want also that the app bar will have a back button the page is changed, how ...
Guy Mayo's user avatar
0 votes
1 answer
117 views

How could i achieve such AppBar,The AppBar itself does not have to be an actual AppBar widget. if it can be done with a normal Container,Painter or ClipPath I'd still appreciate it. Does not have to a ...
Abdallah Rashed's user avatar
0 votes
2 answers
95 views

I'm trying to add a TextField to the bottom of my app bar using Flutter. However, the TextField is not showing up as expected. I'm using the PreferredSize widget to set the height, but it still doesn'...
Nur Fajar Ismail's user avatar
2 votes
1 answer
739 views

I am just starting to learn Flutter and am following a Youtube tutorial. As far as I can tell I've copied the code exactly, however, my ThemeData is not getting applied to my app. I've also noticed ...
Quinn Dawson's user avatar
0 votes
1 answer
45 views

I'm encountering an issue in my Flutter app where I'm trying to add padding to an IconButton in the AppBar. However, when I add padding to the IconButton, the icon moves to the right, but the button ...
Ильяс Нигматов's user avatar
1 vote
1 answer
141 views

how do I Center a column in the Appbar? I've searched online and even after adding a row with mainAxisAlignment and mainAxisSize, the Column is still not centered. TIA for all inputs. Additionally, ...
deandrehaijiel's user avatar
-1 votes
2 answers
215 views

I have a custom appbar class where I pass the title as its constructor. class MyAppBar extends StatelessWidget implements PreferredSizeWidget { final String? title; @override Size get ...
Ajay's user avatar
  • 9
0 votes
1 answer
403 views

I'm encountering extra padding around both the navigation bar at the top and the bottom navigation bar in my Flutter application. This padding creates unnecessary space and disrupts the intended ...
dumbfuckJuice 's user avatar
0 votes
2 answers
2k views

I am following a YT video (https://www.youtube.com/watch?v=C-fKAzdTrLU&t=1407s), which is a 1 hour Flutter tutorial. I am using VSCode and Android Studio on a Mac, creating a main page with a ...
Kayasmus's user avatar
0 votes
1 answer
119 views

I am struggling with designing the below appbar design of the app in flutter i have checked various online resources,documentation,official flutter website but too much confused how to design the ...
Sibghat ullah's user avatar
1 vote
0 answers
88 views

I want to hide the SliverAppBar on scroll down, but I don't want it to expand unless user is at the top, I also want non-expanded SliverAppBar to show when user is going up, but it shouldn't expand ...
Emre Akcan's user avatar
  • 1,180
1 vote
1 answer
64 views

So, I'm building an app using Flutter, in the home page, I want to have a bigger AppBar, while in others, AppBar goes back to regular size, I managed to achieve this thanks to Dhafin Rayhan's answer ...
Amine Messabhia's user avatar
1 vote
1 answer
93 views

So, I'm building an app using Flutter, in the home page, I want to have a bigger AppBar, while in others, AppBar goes back to regular size, I managed to achieve the former in a good and smooth ...
Amine Messabhia's user avatar
3 votes
1 answer
298 views

I'm currently working on a page in my Flutter app and facing challenges implementing a specific logic. When the app launches, I want the page to initially display the 'appbardown' widget (the larger ...
Ahmad Maaz's user avatar
0 votes
2 answers
202 views

I would like to write the company name with the original colors inside the AppBar of the application. For example the word "WhiteRed" with the "White" text in white color and "...
OltreXR4's user avatar
0 votes
1 answer
52 views

In a flutter app I have created an Android view that displays a camera screen and i have an app bar but the app bar is hidden behind the camera view and i am not able to bring it to front. The camera ...
Aryan Trivedi's user avatar
1 vote
1 answer
269 views

Flutter and go_router - Navigator into only a portion of the screen A homepage with a left sidebar, top appbar and central body for pages Hi, I'm a beginner and I need some help. I would like to get a ...
Biagio63's user avatar
1 vote
1 answer
73 views

import 'package:businesscard/cubits/get_weather_cubits/get_weather_cubit.dart'; import 'package:businesscard/cubits/get_weather_cubits/get_weather_states.dart'; import 'package:businesscard/screens/...
ibrahim alnagar's user avatar
0 votes
1 answer
58 views

@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text("Browse"), backgroundColor: Colors.grey[900], actions: []...
Vignesh's user avatar
0 votes
1 answer
725 views

I want to create an appbar in Flutter that is transparent at first (with some icon buttons in it) and if you scroll, it slowly starts to transition to a color and a title fades in. After an specific ...
Northbret's user avatar
0 votes
1 answer
71 views

My code is : import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(...
Alain Okala's user avatar
0 votes
2 answers
179 views

I have a page in which I have an AppBar which in turn has an IconButton as its leading property. The code is as follows: @override Widget build(BuildContext context) { return Scaffold( ...
sm-sayedi's user avatar
  • 1,120
0 votes
1 answer
126 views

How To Remove Black Line Below AppBar Header When We Scroll Page in Flutter APP?
Kiran Jadhav's user avatar
  • 3,337
0 votes
1 answer
76 views

I have a StatefulWidget named Root and this is the start address of my application. The Root widget contains the single and common AppBar of the application, but its body varies. My question is: I ...
TheSylar's user avatar
5 votes
3 answers
1k views

I am trying to create a custom AppBar, with a polygon instead of the bar, I already have something: As you can see, on some screens the bar is to high, because the SafeArea differs. I did not use: ...
Emaborsa's user avatar
  • 2,940
0 votes
1 answer
274 views

Anybody has any idea How this leading background color container works. whenever I change The color of the container in the leading to (the one that I marked in red).It gives me a totally different ...
Lemo's user avatar
  • 1
1 vote
2 answers
180 views

I want to use a BottomAppBar and due to technical reasons I cannot use the BottomNavigationBar. How do I define the color of my icons depending on which screen I'm on? I.e. when I am on Screen A, the ...
Raul Ponzheimer's user avatar
1 vote
2 answers
906 views

I am trying to create an AppBar in Flutter that expands downwards when I click on the arrow icon (similar to the effect shown in this image). The current AppBar implementation I have is shown below: ...
MICHEL Baptiste's user avatar
0 votes
1 answer
217 views

i'm quite new to flutter and i have a big question. I have a HomePageView with a BottomNavigationBar and a PageView with a controller to switch 4 different views. Now, at start i was cheating because ...
Phoenix's user avatar
  • 129
0 votes
1 answer
73 views

I am a beginner Flutter developer I am going to implement a program similar to the picture below This part of the appbar is an application that I planned to implement using the decoration box, but I ...
Mr2C2R's user avatar
  • 105
0 votes
1 answer
50 views

See, the header is transparent with just a back leading icon See how the header changed I want to achieve the same effect. If i could add a transition between the two app bars that would be even ...
Yasin Shah's user avatar
3 votes
1 answer
2k views

I am developing a Flutter application and I want to implement an app bar similar to the one used in the iOS settings (or alarm) app. The main feature I am looking for is that when the page's content ...
Drompai's user avatar
  • 214
2 votes
3 answers
16k views

I want to add padding to the icons on the AppBar. I tried wrapping icons with Padding() but that only squeezes them to the allocated space--not the one I give it. Widget build(BuildContext context) { ...
MN.'s user avatar
  • 156
0 votes
1 answer
56 views

In flutter app whenever i use navigation a totally new screen appears, is it common that on navigating a totally new screen appears and appbar and drawer of of previous screen disappear or I am doing ...
Ashish Tandon's user avatar
0 votes
2 answers
367 views

So I have an app on my mobile phone called 'Formulia' and I thought the design of their main page expandable app bar looks awesome. Formulia app collapsible app bar Do you have any idea how I could ...
user avatar
1 vote
1 answer
136 views

How can i make this kind of tab bar in flutter
Yogesh Dubey's user avatar
2 votes
1 answer
2k views

I am having a custom App Bar in one of the widget with custom height. Here is how the implementation looks like class Home extends StatelessWidget { Widget build(BuildContext context) { return ...
itsji10dra's user avatar
  • 4,673
1 vote
3 answers
685 views

I have a widget called 'HomePage' in my application. I gave a pageview to its body and put 2 pages in it. In the Appbar, there is a title that shows the user's money. on one of the pages there is a ...
Berat Yıldırım's user avatar
0 votes
1 answer
72 views

In my app, I am trying to add a navbar and this working fine but I cannot force the navbar in the top | center of the screen. I have tried to customize it with blur effect in background and the goal ...
Seb's user avatar
  • 3,255
0 votes
2 answers
75 views

I have created a custom NavBar in flutter but the GestureDetector is not working so I am stuck on one single page. Below is the code. class SearchPage extends StatefulWidget { const SearchPage({...
Seb's user avatar
  • 3,255
1 vote
0 answers
181 views

Zoom in zoom out in calendar view with flutter I try zoomable widget also interactive widget with gesturedetector widget. Basically i want to create it in such way that on zoom in it changes the view ...
Shubham Joshi's user avatar
0 votes
2 answers
220 views

How to create appbar like the image below:
Bruno Santos's user avatar
-2 votes
2 answers
443 views

Is there any way to store in a boolean variable true for if appbar is present and false if not? I can't find at all anywhere.
Linisha's user avatar
  • 27
-1 votes
2 answers
875 views

I'm new using Flutter and and I'm having trouble understanding how the AppBar works. I would like to get a result similar to this my main problem is how to add a box, similar to the orange one in the ...
Andrea Zugni's user avatar
-1 votes
3 answers
358 views

I'm customizing my AppBar in flutter and I'm trying to obtain a result like this: I liked the idea of ​​using the appbar widget for the many features it has by default (adaptive width etc...), but I ...
Franco Romano's user avatar

1
2 3 4 5