Appbar getting trasnparent and shows content under it

I am trying to achieve appbar animation. I have achieved the animation required but app bar is getting transparent. I dont know why this is happening. Can someone help resolving the issue? Here is the code bool showAppbar = false; bool isScrollingDown = true; ScrollController controller = ScrollController(); @override void initState() { super.initState(); controller.addListener(() {… Read More Appbar getting trasnparent and shows content under it

Flutter mobile app dev- "the named parameter title' isn't defined. I have change it to label" but still getting error. What would be the problem?

This is the code: Have changed title to label as below. But Text(….) was all highlighted in red. Error – "the argument type ‘Text’ can’t be assigned to the parameter type ‘String’." @override Widget build(BuildContext context) { var data = EasyLocalizationProvider.of(context).data; return EasyLocalizationProvider( data: data, child: Scaffold( body: callPage(currentIndex), bottomNavigationBar: Theme( data: Theme.of(context).copyWith( canvasColor: Colors.white,… Read More Flutter mobile app dev- "the named parameter title' isn't defined. I have change it to label" but still getting error. What would be the problem?

While Scrolling ListView, Listview data should be display under transparent Appbar

I want to make appear transparent while scrolling listview..I have tried with using stackoverflow coding but looks like this effort is nothing for making what I want to make… Appear should be convert into transparent and Listview items should be displayed behind transparent appear here is my basic level code import ‘package:flutter/material.dart’; import ‘dart:io’; class… Read More While Scrolling ListView, Listview data should be display under transparent Appbar

AppBar full transparent

Problem Is there any way to make the AppBar fully transparent without using the Stack Widget?? This is my AppBar right now (It’s transparent but not fully, it has a little white shadow) AppBar( automaticallyImplyLeading: false, backgroundColor: const Color.fromARGB(0, 255, 255, 255).withOpacity(0.1), shadowColor: const Color.fromARGB(0, 255, 255, 255).withOpacity(0.1), title: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row(… Read More AppBar full transparent