7,068 questions
0
votes
0
answers
14
views
Maui BlazorWebView ScrollView Scrolling
Hello i tried to look for similar questions and did most of the answers but none of them worked.
We are building a maui app using blazor web view for android and ios.
Long list of contents require ...
1
vote
1
answer
44
views
ScrollView contents below navigation bar
I'm struggling with the new edge-to-edge display introduced by default with SDK 36. My scroll view contents are behind the navigation bar even when scrolled to the bottom.
I had a look at the "...
0
votes
1
answer
29
views
Buttons inside horizontal ScrollView doesn't response
I write project in react-native and have weird issue.
in my home page i have horizontal ScrollView, and inside it components that contain buttons, but the buttons not work. e.g. pressing on the ...
0
votes
0
answers
38
views
React Native Modal not working when I open it from a ScrollView
I'm building a song-organizing component for my app in React Native and I'm trying to use the native Modal component. The songs are listed in a ScrollView. The app allows the user to delete songs one-...
0
votes
2
answers
87
views
Dynamic height of elements
Here is my problem:
I have a ScrollView with a list of elements:
ScrollView {
VStack(spacing: 3) {
ForEach(testObjects) { obj in
ObjItem(obj: obj)
}
}
}
The ...
0
votes
1
answer
102
views
Content inside @gorhom/bottom-sheet is not scrolling
I am using @gorhom/bottom-sheet in my React Native application to display additional details. The bottom sheet itself works perfectly—it expands and collapses as expected. However, the content I'm ...
1
vote
0
answers
35
views
CollectionView inside CarouselView doesn't scroll in Android (MAUI)
I'm trying to implement similar functionality to how Gmail and Outlook apps works, e.g. user can swipe left/right to navigate between emails and inside email you can also horizontally scroll ...
1
vote
0
answers
36
views
.NET MAUI ScrollToAsync not working correctly on iOS when Entry is focused (keyboard overlap issue)
I'm building a login screen in .NET MAUI and using a ScrollView to allow vertical scrolling. On Android, everything works fine — when the user taps on the Entry (email field), the screen scrolls and ...
2
votes
1
answer
75
views
TextInput losing focus when keyboard opens in React Native
I'm working with React Native, and I have a part of my app that contains some input fields inside a scrollable screen. When I tapped on a field, it would gain focus, but after scrolling, the field ...
0
votes
1
answer
51
views
ScrollView component is not working properly inside Pressable and TouchableWithoutFeedback
I have customize my own modal in react native. Here is the code i have written.
<Modal
animationType="slide"
transparent={true}
visible={visible}
onRequestClose={onDismiss}
...
0
votes
0
answers
47
views
WebView inside Grid and wrapped in ScrollView issue in iOS
I've a following XAML which works in Android, but not in iOS:
<ScrollView HorizontalScrollBarVisibility="Never">
<Grid RowDefinitions="Auto,*">
...
2
votes
1
answer
44
views
full screen height flatlist items
I am trying to implement a FlatList with full screen size items, but haven't been able to do it without manually setting the items height based on the available screensize and I was wondering if it ...
1
vote
1
answer
124
views
React Native Reanimated: useScrollViewOffset not working with stickyHeaderIndices and absolutely positioned views
I'm trying to create an animated header that moves based on scroll position using React Native Reanimated, but the useScrollViewOffset hook isn't tracking scroll events properly when combined with ...
0
votes
0
answers
22
views
FlatList inside ListHeaderComponent — onEndReached not firing (infinite scroll issue)
I'm trying to implement infinite scroll in a FlatList (let’s call it NestedList) that is rendered as the ListHeaderComponent of a parent FlatList (MainList) in React Native.
⚙️ What I'm trying to do:
...
0
votes
1
answer
96
views
SwiftUI ScrollView - Animation of snapping when scrollTargetBehavior is `.paging` or `.viewAligned(limitBehavior: .alwaysByOne)`
I have a basic paged ScrollView using scrollTargetBehavior as .viewAligned(limitBehavior: .alwaysByOne) or .paging. It is a full screen vertical pager i.e.
GeometryReader { geo in
ScrollView(....