skip to Main Content

Problems with image picker – Flutter

I am trying to use the image picker dependency, but I am running into a. a bit of a problem. Here is the function I created for the image picker: pickImage(ImageSource source)async{ final ImagePicker imagePicker = ImagePicker(); XFile? file =await…

VIEW QUESTION

Android Studio – Android Studio ic_launcher not found

after have created an icon for the app, android studio is avoiding it when I generate the apk file for release. error: resource mipmap/ic_launcher (aka com.example.elrestaurante:mipmap/ic_launcher) not found. error: resource mipmap/ic_launcher_round (aka com.example.elrestaurante:mipmap/ic_launcher_round) not found My project has a git…

VIEW QUESTION

Android Studio – How can I change the fragment in current fragment?

I am developing a mobile application using with java in android studio.I am new to this environment.I have bottom navigation bar with 3 menu item (Home,Add article,Profile). <menu xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/home" android:icon="@drawable/ic_baseline_home_24" android:title="Home" /> <item android:id="@+id/article" android:icon="@drawable/ic_baseline_post_add_24" android:title="Article" />…

VIEW QUESTION
Back To Top
Search