Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
14 views

I am trying to create a path animation of Svg in the desktop compose app. fun SvgDocument.drawCompletedFills(buildPaths: List<BuildPath>, drawScope: DrawScope, canvas: Canvas, targetLength: ...
Vivek Gupta's user avatar
0 votes
1 answer
28 views

When using com.google.maps.android:maps-compose in version 6.12.2 I get the following error building the project: org.jetbrains.kotlin.util.FileAnalysisException: While analysing <redacted>/...
Eklavya's user avatar
  • 11
Advice
0 votes
1 replies
18 views

It is common to test inline errors by filling out a textfield and then clearing focus, as the validation happens after the user is done with it. In espresso that can look like: onView(allOf(...
Zeek Aran's user avatar
  • 686
-2 votes
0 answers
44 views

I'm using Kotlin and Compose, and I can't figure how to get the current location once via only GPS. I don't want to use Fused Location Provider. The location doesn't have to be precise and it's not ...
user26376492's user avatar
-2 votes
1 answer
62 views

problem gifAs you can see in the gif, when I drop down, the view below is pushed out. I want the dropdown to be above the view below without being pushed out. How can I do this? In particular, I'd ...
Juco's user avatar
  • 1
-2 votes
0 answers
86 views

I am trying to build a horizontally scrolling list of category chips in Jetpack Compose, similar to this design: I want the categories to: scroll horizontally look like rounded chips highlight the ...
soumik's user avatar
  • 11
0 votes
2 answers
64 views

For example, the SVG content obtained from the web is: <svg t="1717950268208" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3....
pnkj's user avatar
  • 528
-1 votes
0 answers
38 views

I have a problem with displaying the card when the checkbox is checked. I would like a given card in one activity to be displayed only when the user selects a given checkbox in another activity. But ...
Lemon's user avatar
  • 1
Advice
0 votes
1 replies
71 views

I see that users are getting the following error in my app. The problem is that the stacktrace doesn't lead to the point of origin in my app. Although I highly suspect it is a certain custom text ...
Yannick's user avatar
  • 6,189
0 votes
0 answers
26 views

Steps to reproduce: notification --[intent]--> ...Annoucement Details with Pin Validation --[back]--> home screen --[SYSTEM nav bar back]--> exit app --[system bar overview reopen]--> {!!!...
Stanisław Olszak's user avatar
2 votes
2 answers
104 views

I want to retrieve a specific column from my Android ROOM Database but it kept returning an empty list. Here is the code on my DAO interface: @Query("SELECT * FROM expense_table ORDER BY category ...
JazzAnt's user avatar
  • 23
2 votes
1 answer
97 views

I have a question: is it possible in Jetpack Compose to create a glowing effect similar to what YouTube uses when playing a video? I mean a dynamic effect based on the image colors. If not, how can I ...
m4ykey's user avatar
  • 23
0 votes
0 answers
25 views

I’m building a Kotlin Multiplatform (KMP) project using Compose Multiplatform for Android and iOS. On Android, I’m trying to calculate bottom padding for a bottom sheet using WindowInsets....
Pawandeep Singh's user avatar
4 votes
2 answers
148 views

When my application starts, I launch an animation. Now I would like to switch to another component (navbar) after 30 seconds. In my research, I saw that the delay function from the Kotlin Coroutines ...
Yann Djomo's user avatar
0 votes
0 answers
104 views

I'm using the TwoPaneSceneStrategy as available on Google's Nav3 Recipes repo to display the content in a NavDisplay. This is the Scene that actually displays the content: class TwoPaneScene<T : ...
nsh07's user avatar
  • 110
-1 votes
0 answers
82 views

Problem Description I'm using the com.skydoves.balloon.compose library in my Android Compose project to display tooltip views. I'm facing two issues: Width Issue: The content inside balloonContent is ...
Kiran's user avatar
  • 1
0 votes
0 answers
76 views

I’m building a Kotlin Multiplatform app (KMP) and want to store sensitive values like auth tokens securely on iOS using Keychain (instead of NSUserDefaults). I found this code on Medium, but it does ...
Pawandeep Singh's user avatar
4 votes
1 answer
60 views

I’m using Android Studio with Jetpack Compose, and I often use the “Find in Files” feature (Cmd + Shift + F / Ctrl + Shift + F / clicking in a function/class to see the usages) to search for code ...
Pierre Vieira's user avatar
2 votes
1 answer
81 views

I'm working with Compose and the ViewModel and a list. I don't understand why my UI isn't recomposing when I click on the button, although I am generating a new list. data class Dice(var value: Int = ...
Anthone's user avatar
  • 2,332
0 votes
0 answers
63 views

At the moment, I am trying to get a virtual phone (Pixel 7) running in Android Studio. I already tried the following things, to optimize/ enable the bootup: deactivated VBS activated ...
SarinisPin's user avatar
0 votes
0 answers
33 views

Why is the DropdownMenu Container bigger then its child? Is there a minimum size or padding that we don't have control over? Or is it a theming problem? I dont want it to be this big. I want the ...
Zonko's user avatar
  • 239
1 vote
0 answers
47 views

Problem I'm using Jetpack Compose Navigation with dialog destinations. When I show a DialogFragment on top of a Compose Navigation Dialog, the order is correct. But after backgrounding the app and ...
Eslam Hussein's user avatar
0 votes
1 answer
84 views

Should I always initialize a viewmodel in the Activity, before onCreate() even, if it is needed later in the flow? I do not know and am concerned if initialization of all the viewmodels right at the ...
Sayan Basak's user avatar
3 votes
1 answer
116 views

I'm building a chat interface in Jetpack Compose using a LazyColumn. When a user sends a new message I want their latest message to appear at the top, and older messages should scroll up automatically....
Pawandeep Singh's user avatar
3 votes
1 answer
178 views

I’m building a dynamic Jetpack Compose UI where layouts are driven by JSON configuration. Each container can be either vertical (Column) or horizontal (Row), and components like text, icons, and ...
Megh Lath's user avatar
  • 2,244

1
2 3 4 5
287