import 'package:flutter/material.dart'; import 'package:flutter/cupertino.dart'; class Reservation extends StatelessWidget { @override Widget build(BuildCo
I am developing a featured news app, how do I make a blur tabar like in the picture
Main Screen Code Block: Scaffold( resizeToAvoidBottomInset: false, appBar: AppBar(backgroundColor: Theme.of(context).primaryColor), endDrawer: const AppDrawer()
import 'package:flutter_svg/flutter_svg.dart'; void main() { runApp(MaterialApp( home: Scaffold( // adding App Bar appBar: AppBar( ac
I am showing AlertDialog when ontap InkWell all is well just one thing I don't know where this margin in top and bottom came from. This is the result I've got
List<String> ilac_items = ["İlaçlar","İnsektisit", "Fungusit", "Herbisit"]; String? selectedIlacItem = "İlaçlar"; Dropdow
Is it possible to shrink a Text widget to the width of the longest line when the text is wrapped because it becomes too long to fit on a single line? Basically
As the image is shown below, the first image displays my text field before I click on it. the second image displays how it displays when after start typing and
I was thinking to developing a windows desktop application with dart and flutter but i don't know how can i integrate Firebase cloud messaging with it. Any sugg
couldnt find anything wrong with it dependencies: google_mobile_ads: ^1.1.0 Error: MissingPluginException(No implementation found for method MobileAds#initia
I am trying to use bottomNavigationBar with notched effect in flutter, and of course it is fine. But when I try to add padding to BottomAppBar on the left and r
Wanted to replicate some UI. Can I do this with in built flutter widgets? I have tried using Chip but was not able to. Will CustomPainter be the right thing to
onTap: () { showDialog( context: context, builder: (BuildContext context) { return ImageNetwork( image: data['image'].toString(), height: 400, width: 400, durat
I'm building a gridview displaying thumbnails and do not want to show the items at index 0. I have a different widget where I show thumbnails using a listview
How to create dynamic introduction_screen in Flutter with introduction_screen package. Means We are pass 3 screen in api. introduction_screen 3 pages. We are pa
Can anyone help me. How to Save Icon in hive database in flutter. And to read it. When I'm saving Icons it is giving error unhandled exception: hiveerror: canno
the dart code below allows you to decode a json that comes from a backend inside resultValue, I have the response of the rest call with the json shown below, wh
I was trying out flutter platform to create a multipage website with android and ios responsiveness using single codebase for my flutter app. I've already tried
How can I customize UI design like the following in flutter? Sample Image
I have created a RadioListTile based on a list of string items in an initStat function. But i could not get the radio button to change when it is being selected