1,882 questions
0
votes
1
answer
354
views
Taking pictures in React Native app and saving to iPhone storage
I'm developing a mobile app on React Native and one of the screens in it is responsible for taking photos:
import React, { useState, useEffect, useLayoutEffect, useRef } from 'react';
import { ...
0
votes
1
answer
80
views
How do I keep user logged in even after reload of the app?
How do I keep the current registered user of my app logged in the app even after reloading the app or closing it out? The current state sends the user straight to my Login screen after reloading the ...
0
votes
1
answer
453
views
How to display image from device library in React Native mobile app?
I am trying to implement a functionality where it allows the user to tap the "Add Photo" component and their device photo library pops up to add/choose an image to display. However, I am ...
0
votes
1
answer
522
views
Error: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present
I have android application project which is old and now I want to target compileSdkVersion 33 from 30. I have made change and also I have added android:exported in activity in AndroidManifest file but ...
0
votes
1
answer
692
views
Appsheet calculated expired date spesifiec
I have an Appsheet who consist two column, let's both named is Production Date and Expired Date. If column Production Date has 2 years of Expired Date then how the formula in appsheet to calculated it?...
0
votes
2
answers
111
views
How to pass parameters in navigation handle to a different screen than you are navigating to?
I have a LogIn screen in my app and when the login button is tapped with the username/pass, I am trying to pass result.user parameter to my screen named "User Profile" while navigating to &...
2
votes
1
answer
144
views
Screen Blinking Issue During Android Activity Transitions With Shared Elements
Experiencing screen blinking during Android activity transitions when going from splash screen to login page, but weirdly enough not from login to register page:
Is there any way to fix this issue ?
...
0
votes
1
answer
723
views
How to obtain token when using app based OIDC in in-app browser
I have a question about best practices when it comes to OIDC in an app based context.
Most guides I have found explains such a setup in the context of the app being the client that will perform the ...
0
votes
0
answers
396
views
Angular 13+ Web App to Mobile App with Capacitor -- Issue Connecting to API
I have an Angular 13+ web application with a PHP backend that works perfectly on browsers. I am trying to convert this application to native mobile apps (Android and iOS) using Capacitor. I have ...
0
votes
0
answers
184
views
Angular / PHP / mysql Web App Conversion to Mobile App via Capacitor
I have a very complex Angular web application hosted on Siteground. My frontend is Angular, my backend is PHP, and the database is stored on Siteground.
I am looking for any insight into how to ...
0
votes
0
answers
25
views
React Native Application is not touchable and shows warning
enter image description here
The Inputs are not focusing when I touch and button is also not touchable, Basically I can see my app, but can't interact with it. It also shows an warning about SSR ...
2
votes
0
answers
993
views
Failed to load dynamic library 'libolm.so'
I'm buidlind an chat application using matrix sdk package [matrix: ^0.22.3] in flutter. If i use that matrix package in my app, I'm getting an error mentioned below, kindly help me to fix this issue, ...
2
votes
0
answers
466
views
React Native Expo SDK 49 Google OAuth
I am new to React Native and Expo and having hard time figuring out this piece of code. I have tried everything I could find on Google and StackOverflow. Running the app on a IOS device in Expo Go app ...
1
vote
0
answers
305
views
"App Installation Not Safe" Showing message and App Closes
I recently updated my Android app via the Play Store, but I'm running into an issue. When I try to open the app, I get a "App installation is not safe, Please download the app via a proper method&...
1
vote
0
answers
435
views
Changing Flutter App Icon Dynamically via HTTP Request
I'm working on a mobile app developed using Flutter and Dart, targeting both iOS and Android platforms. In our app, we aim to implement a feature that allows us to dynamically change the app's icon ...
0
votes
1
answer
26
views
Bottom Overflowed By Pixels and does not working navigate function
enter image description here
The above photo shows the error what i have facing .bottom is overflowed 484 pixel and also navigation is does not working in sidebar . then i coudn't able to find the ...
-2
votes
2
answers
80
views
App Running in android studio but showing error in VS code
Could not find an option named "no-sound-null-safety".
Run 'flutter -h' (or 'flutter -h') for available flutter commands and options.
Exited (1)
My Flutter version 3.10.6 &Dart version ...
0
votes
1
answer
180
views
How to remove border of the system tray at top of the screen in flutter android app
The same code i run in iOS emulator and it doesn't give any top system tray border but when i run it on any android phone, i get it. I have searched on the internet but i couldn't find any solution ...
1
vote
2
answers
1k
views
How to close the keyboard on tapping anywhere outside the dialog below in compose
val keyboardController = LocalSoftwareKeyboardController.current
val activity = LocalContext.current as Activity
Dialog(
onDismissRequest = { onDismiss() },
properties = ...
0
votes
1
answer
487
views
What Programming language should I use to build app similar to duolingo for Android, iOS, Desktop, and web [closed]
I'm looking to build a app related around education similar to duolingo. Currently, I know Python and a tiny bit of Javascript. but I was wondering what programming language (not just limited to ...
0
votes
1
answer
324
views
Flutter overfloxBox is not working for me
I need the maximum available width of the media so that the image doesn't overflow and cause a rendering issue.Here is my code:
Expanded(
child: OverflowBox(
maxWidth: ...
4
votes
1
answer
295
views
What are the best practices/ways to understand user behavior for a mobile application?
I have users' click events chronologically stored in my backend server. I also have session count, session time, etc. My goal is to identify the followings:
Which feature do users use most? And which ...
0
votes
0
answers
309
views
Google Play Console App Content SMS Permission [App Rejecting]
I am trying to launch my app onto play store and its rejected 5 times actually its using SMS permission->what our app does it take time nd mobile number as input and send SMS to the mobile number ...
0
votes
0
answers
60
views
Upload folder over laravel api using flutter
I want to upload a directory over laravel api without compressing the directory, I want to select the directory and upload it, is there any way to do it?
I searched too much for it but I didn't find ...
0
votes
0
answers
104
views
Is there other way have to active dark mode to whole app in react-native without following method?
<SafeAreaView style = {[styles.container,isDarkMode && darkStyles.container]}>
const styles = StyleSheet.create({
container: {
flex ...