skip to Main Content

Dock Widget on other Widget Flutter

I want to "dock" the Text Widget you can see on the Picture on the GridView. My approach looks like this: Container( height: 500, child: Column( children: [ Expanded( child: GridView.count( physics: NeverScrollableScrollPhysics(), crossAxisCount: 7, childAspectRatio: 0.6, children: List.generate(dates.length, (index)…

VIEW QUESTION

How to extract audio from video using ffmpeg-kit with flutter

just extract audio from video @override void initState() { // TODO: implement initState super.initState(); getAudio(); } getAudio() async { await FFmpegKit.execute( "ffmpeg -i D:/Dart and Flutter/Projects/Jmm/firebase_task/assets/videos/flutter.mp4 -q:a 0 -map a D:/Dart and Flutter/Projects/Jmm/firebase_task/assets/videos/flutter_audio.mp3") .then((value) async { var returnCode = await…

VIEW QUESTION

how can i give percentage height in stack with respect to other children in flutter stack widget

here is my code Scaffold( // backgroundColor: Colors.transparent, appBar: AppBar( backgroundColor: Colors.transparent, elevation: 0, title: const Text("Live Shows"), ), body: MasonryGridView.builder( physics: const BouncingScrollPhysics(), gridDelegate: const SliverSimpleGridDelegateWithFixedCrossAxisCount( crossAxisCount: 3, ), mainAxisSpacing: 7, crossAxisSpacing: 7, itemCount: urs.length, itemBuilder: ((context, index) {…

VIEW QUESTION

Flutter: function returned null

I'm having a problem compiling this flutter code. It throws me the following error: The following assertion was thrown building FutureBuilder(dirty, state: _FutureBuilderState#afa3f): A build function returned null. The offending widget is: FutureBuilder Build functions must never return null. To…

VIEW QUESTION
Back To Top
Search