skip to Main Content

Flutter right overflow by 220 pixel

I have this error Flutter right overflow by 220 Pixel and Right Overflow error is showing. My code : import 'package:flutter/material.dart'; class Category extends StatelessWidget { const Category({super.key}); Widget CategoryCard(String imgUrl, String CategoryName) { return GestureDetector( onTap: () {}, child:…

VIEW QUESTION

Flutter ReceiverPort don't listen

I'm using the flutter_downloader package to download files with my app. The progress notification is working nicely. but my ReceivePort is not listening to the progress. final ReceivePort port = ReceivePort(); @override void initState() { super.initState(); IsolateNameServer.registerPortWithName( port.sendPort, 'downloader_sendport'); port.listen((dynamic…

VIEW QUESTION
Back To Top
Search