Issue HIIII! I have this problem where I need to display items, but I cant. I don’t know where i should put the FutureBuilder. It’s supposed to display thisenter image description here Widget build(BuildContext context) { return Scaffold( body: Column(
Continue readingTag: mobile
How to add bottom navigator in flutter?
Issue Hello guys im new to flutter, and i wanted to ask how do i properly add bottom navigator to flutter? i’ve been tried few tutorials in youtube but there’s always something that won’t work. so i want to ask
Continue readingFlutter button shows error instead of navigate
Issue im new in flutter and i have this button error that wont navigate to different pages. so i have a "HomePage" that have a button to navigate to "ReminderHomePage". but when i try to press it it show this
Continue readingHow to pop context with FLUTTER go_router?
Issue How do I go back to the previous screen with flutter’s go_router? How to pop context? Currently I am simply adding a new screen to the stack whether I want to go back or go forward. onTap: (() =>
Continue readingHow to get screen height in flutter
Issue Hi Im just trying to get height using MediaQuery.of(context).size.height but getting FlutterError (No MediaQuery widget ancestor found. MyApp widgets require a MediaQuery widget ancestor. The specific widget that could not find a MediaQuery ancestor was: MyApp The ownership chain
Continue readingtype 'Rx<DateTime>' is not a subtype of type 'DateTime' in type cast
Issue I called the showDatePicker function to be used on the registration screen. Since I wrote with getx, I used obs for instant display of the selected value, but I encountered the error as below. "type ‘Rx’ is not a
Continue readingHow to put button under an image? Flutter
Issue Hello guys im new in flutter and i need help with my app, to put a button under an image in my app main menu, here is my code so far i build based on https://docs.flutter.dev/development/ui/layout/tutorial import ‘package:flutter/material.dart’; import
Continue readingAndroidRuntime: FATAL EXCEPTION: main Caused by: java.lang.RuntimeException
Issue Lots of errors and I can’t find the solution, it’s a college project for mobile apps https://github.com/ThalesCaruso/Lista-de-Mercado enter image description here enter image description here Watched a lot of youtube tutorials but didnt work Solution You’re using implementation ‘androidx.room:room-compiler:2.5.0-beta02’
Continue readingFlutter : delete just one page from back stack
Issue So, i know that this code will removes all of the routes except for the new /login.: Navigator.of(context) .pushNamedAndRemoveUntil(‘/login’, (Route<dynamic> route) => false); now i want to remove just one page from the back stack.. Example : To create
Continue readingregisterForActivityResult is not working in Flutter
Issue I’m trying to launch context from android MainActivity class to flutter. code : val authResult = ComponentActivity().registerForActivityResult(PianoIdAuthResultContract()) { r -> when (r) { null -> { /* user cancelled Authorization process */ } is PianoIdAuthSuccessResult -> { val token
Continue reading