skip to Main Content

Tab bar indicator color is not updating on swipe of tabbarview in flutter?

import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; class TestDemo extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, visualDensity: VisualDensity.adaptivePlatformDensity, ), home: MyHomePage(title: 'Flutter Demo Home…

VIEW QUESTION

How to make the List scrollable in the drawer – Flutter

I want to make the inner column scrollable. how can i acheive it,tried replacing with list view,and Single child scroll view but not working This is the widget structure >Drawer >>Container >>>SingleChildScrollView(never Scrollable) >>>>Column >>>>>Drawer Header >>>>>Column >>>>>ListView.builder(never scrollble physics)…

VIEW QUESTION

confused about using flutter_screenutil package

I have a question about using flutter_screenutil package. the package has two methods for setting widths and heights, first one when using ScreenUtil().setWidth(540) or ScreenUtil().setHeight(540) and the second one when using extensions like 540.w or 540.h I am confused about…

VIEW QUESTION
Back To Top
Search