skip to Main Content

how to takes a entire available space in column in flutter

I will explain with simple examble, class Demo1 extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Column( children: [ Flexible( child: ListView( shrinkWrap: true, children: const [ ListTile( leading: Icon(Icons.image), title: Text('with shrinkwrap is true'),…

VIEW QUESTION

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
Back To Top
Search