589 questions
1
vote
1
answer
144
views
LazyColumn resizing issue
We have a LazyColumn which has a loading state and then shows the received data. In the second stage, the final view can be smaller than the shimmering views depicting the loading stage. So, if while ...
-1
votes
0
answers
66
views
display problem with ::before when using overflow-y: scroll on position: fixed element
I made a navigation bar where the colored marker for navigation points is located outside of the navigation bar.
I created them using ::before. Everything works fine until I make the fixed navigation ...
0
votes
1
answer
89
views
chartScrollableAxes moves axis
I am trying to implement a horizontal scrollable chart. However, the y axis moves along when scrolling. How can I make the y axis stay put?
Here is my code:
struct DataPoint: Identifiable {
var id ...
0
votes
1
answer
39
views
Scrollable content without using position:absolute and wrapper DIV
How to make the section element below scrollable and take 100% of its parent height?
*{ margin: 0 }
main{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
background: ...
2
votes
1
answer
82
views
Aligning grid columns between parent and container frames using tkinter
Using Python and tkinter I have created a dummy app with a scrollable frame. There are two column headings in a container frame. The container frame also contains a canvas. Inside the canvas is an ...
0
votes
0
answers
65
views
Scrollable Table With Fixed 1st Row and 1st Column (SwiftUI Project)
I am trying to display a table that can be scrolled horizontally and vertically. The first row contains a columnsHeader, which is fixed, so it should not be scrolled vertically, but only horizontally. ...
0
votes
2
answers
276
views
Determine if an element is scrollable
I'm looking for a way to determine if an element is scrollable in given direction. That is, if I can call Element.scrollBy to scroll it.
I've searched around extensively and ended up with:
/**
* ...
3
votes
1
answer
256
views
When scrolling a chart, how do I find the x-values of the data points in view?
I have an app with dates along the x-axis. The user can select a date range for which data will be displayed. This date range can be moved along the x-axis by inputting a date for the date range. By ...
0
votes
0
answers
52
views
Elements in scrollable frame below certain offset aren't rendered in TkInter
I'm using a canvas with a scrollable frame, but elements below a certain scroll offset aren't rendered. Here is an example app demonstrating that behavior. It contains 100 resizable squares in a long ...
1
vote
1
answer
115
views
Context Menu positioning within scrollable element (angular)
I'm using cdk-virtual-scroll-viewport to display a large list of elements like below
<cdk-virtual-scroll-viewport itemSize="115px" class="scrollable-card">
<div *...
2
votes
1
answer
63
views
How can we dim the entire scrollable screen in ionic
In ion content , there are cards , when I long press , the cards should be highlited , for that , I have used dimming effect , when I long press , the screen will be dimmed , but the ion content is ...
1
vote
1
answer
77
views
How to reliably find and scroll a scrollable widget in Flutter with function?
Here's the widget I am using:
import 'package:flutter/material.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
Widget build(...
4
votes
1
answer
548
views
Automatically scroll up the lazy column to display the full height of the card when expanded
This code does not work as expected. I want lazy column to automatically scroll up to display the entire height of the card when expanded.
val listState = rememberLazyListState()
val coroutineScope = ...
1
vote
2
answers
94
views
How to scroll a widget to only partially visible at the bottom or fully visible at the top as shown in these two images?
I am trying to implement a scrolling behavior in my Flutter application where a widget can be scrolled to either be only partially visible at the bottom of the screen or fully visible at the top. I've ...
0
votes
1
answer
141
views
How do I make a TWebTableControl scrollable in TMS WEB Core?
I have a TWebTableControl component on my form with hundreds of rows in it, but I'm only seeing a couple of the rows and I'm not able to scroll in the table component as there isn't a scrollbar and ...
1
vote
2
answers
1k
views
Flutter scrollable_positioned_list does not handle the index correctly
I am trying to create the vertical list of items (Containers) of different height which could be scrolled to the fixed position with ScrollablePositionedList.builder. To manage my list of items, I ...
1
vote
1
answer
121
views
Flutter PageView with scrollable pages excluding pagination area
My main issue is with the content in the first child of PageView where if you scroll the content vertically you will see that the Text('Hello') is behind the PageIndicator. How do I create the ...
0
votes
0
answers
37
views
Centering content of a scrollable container with preserved offsets on both sides
Here's something that might be simple and hopefully possible with pure css.
We have horizontally scrolling container (.scroller). It's width is 100% of its parent and in most cases is the viewport ...
0
votes
1
answer
115
views
Python tkinter: Class for a scrollable frame, the widget inside the scrollable frame does not expand using sticky='nsew', why?
I wrote the folliwing class (reading some examples on the web), it works almost perfectly, except for the fact that the widgets placed inside the scrollable Frame (child of Frame) does not expand when ...
0
votes
1
answer
112
views
Add UIScrollView which fulfills superview and add its content which fulfills everything but safe area
In short words I want achieve the following:
Content is shown behind bottom safe area but user can scroll it.
This implemented with UITableView which has such behavior by default but I need to do ...
1
vote
0
answers
80
views
Flutter Expanded Single Scroll View cause Widget to overlap on other widget
I have a UI that wanted to just allow the list tile part to be scrollable where I am using Expanded and SingleChildScrollView in a Column to achieve this. But when I scroll the ListTile border will ...
0
votes
0
answers
88
views
Background should not be scrollable on ScrollView SwiftUI
I have a ScrollView that lies on top of a Map. This ScrollView contains Views (with edit buttons and so on) that are expandable.
When the view is expanded I cannot click on items on the map that are ...
2
votes
2
answers
1k
views
Scrollbar with SingleChildScrollView not starting at the top of scroll-container
I created a quiz-application in Flutter. Before the quiz starts, a player will get on the start-page of a specific quiz. This page contains a header with title and background-image, and a body with ...
1
vote
1
answer
326
views
Using LazyColumn inside ComposeView with Fragment happen error
Activity using fragment to load Compose, and fragment width and height are match_parent
Fragment create a ComposeView
ComposeView add a LazyColumn like this:
class FragmentFavorite : FragmentBase() {
...
2
votes
1
answer
699
views
how to add Positioned stack inside SliverList and make it scrollable , like when we scroll the top image part will hide and only see appBar&scroll
here i am pasting the video link i want to achieve , please helphi here i want to add a container at the top of the scrollable side and also some part of the container should be at the end of app bar ...
1
vote
3
answers
1k
views
Quarto revealjs presentation does not scroll down in browser
I am trying to prepare lecture slides with quarto in revealjs format (previously used xaringan with great results).
When I open the rendered html with any browser (Firebox, Chrome, Edge), I cannot ...
0
votes
1
answer
403
views
big steps in flutter stepper widget cause overflow. how can i show only 4 steps on screen?
big steps in flutter stepper widget cause overflow. how can i show only 4 steps on screen ?
this is my code:
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class ...
1
vote
2
answers
111
views
Inconsistent behavior of SABT widget when changing scroll direction in Flutter
If I scroll down, the collapsed app bar becomes visible and the first child is also visible. That's good. However, if I suddenly change the scrolling direction to up, even though the app bar is still ...
2
votes
2
answers
634
views
Tkinter Scrollable Frame scrolls even if all content is fully visible
I have implemented a ScrollableFrame class with Tkinter in python, which works fine when the content is bigger than the window (meaning you scroll to see all content) but when there isn't enough ...
0
votes
0
answers
78
views
I have written an scrollable image gallery in Tkinter Python. when number of images per row is 1 or 2 it shows the images with defects
import os
import tkinter as tk
from tkinter import filedialog, ttk
import pyautogui
import cv2
import h5py
import numpy as np
import pandas as pd
from matplotlib import pyplot as plt
from numpy.linalg ...
0
votes
1
answer
1k
views
Convert scrollable div to pdf file
I have scrollable div container with content. I wanna convert it to pdf and download. I used same packages but they only show visible part of div not the whole scrollable area . I want pdf file is to ...
0
votes
1
answer
72
views
(Flutter) How to move a textbox that is blocked by the keyboard
I'm trying to make a comment section that has textbox inside bottom sheet. I've been trying to us viewInsets padding but is still not work and i have no idea whats wrong with my code. So please help
...
-1
votes
1
answer
32
views
HTML CSS Program Overview Template (Grid, Scrollable)
We are programming a website for our event. There is a program in the form of a timetable. There are 3 locations in which different events take place.
In the desktop version the locations should be on ...
2
votes
1
answer
715
views
Problem double borders in primereact datatable
I'm using datatable component from primereact. I have a double borders problem with a scrollable talbe.
Here is the sandbox example : https://codesandbox.io/s/primereact-demo-forked-emfgtk?file=/src/...
0
votes
1
answer
119
views
Scrollable cards in tkinter
So I am trying to create a landing with cards describing a problem. For this, I create a frame that will act as the card for my text and images to be displayed on. My main issue is to be able to make ...
0
votes
1
answer
98
views
Zooming and Scrolling Image
In my on paint event, I'm trying to keep the image centered but also allow the user to zoom into the photo by scrolling. When the scroll wheel shows up the image seems to be off by a little and draws ...
1
vote
1
answer
362
views
No Scrollable widget ancestor could be found
I'm trying implementing of slidable list item by using Slidable widget.
I get error that Scrollable.of() was called with a context that does not contain a Scrollable widget.
I expect to get something ...
0
votes
1
answer
249
views
SingleChildScrollView not scrolling - Flutter
I have a SingleChildScrollView widget inside a SafeArea that is not scrolling. I want to make all the screen scrollable, but it is not scrolling in no way.
Here is the code:
Scaffold(
body: ...
0
votes
2
answers
91
views
How to scroll horizontally, in a vertical scrollable ListView
so i want to scroll horizontally and this horizontal widget are also should be able to be scrolled with the whole screen vertically
i get errors while using the horizontal ListView in a parent ...
0
votes
1
answer
173
views
How does a Python app using pyglet add text to a ScrollableTextLayout?
From pyglet documentation and example code I've reviewed, it is not clear to me how to add text to an existing ScrollableTextLayout that is already displaying some initial text. I want to create a log ...
0
votes
1
answer
1k
views
Google Sheet Notes will not scroll for person with "Viewer" only permission
When I give a person "Viewer" access to a Google sheet with notes in cells, they cannot access the entire cell note. When they open the note, the note comes up already scrolled to the ...
1
vote
1
answer
565
views
How refresh the page when scrolled to the bottom flutter web?
I have a list view that displays the data fetched from the API. And I'd use the pull_to_refresh_flutter3 package to refresh the page when the page dragged upwards. It was working fine On the mobile. ...
3
votes
0
answers
495
views
Flutter QuillEditor not following cursor inside a ListView
I have a page made like this
Column(
children: [
Expanded(
child: Padding(
padding: const EdgeInsets.fromLTRB(
20,
...
0
votes
0
answers
353
views
How to scroll parent widget from child?
I have some stateless scrollable widget like this
`class ProfileScreen extends StatelesslWidget {
final dataKey = new GlobalKey();
@override
Widget build(BuildContext context) {
BlocProvider....
0
votes
1
answer
164
views
How to check if a widget is Scrollable?
I need to distinguish a widget between scrollable and non-scrollable. As a developers, we know that widgets like ListView, SingleChildScrollView, GridView, Sliver,and so on are scrollable and others ...
2
votes
1
answer
815
views
Large Angular material popover should make the parent content scrollable
I have a popover in my project with some checkboxes listed below the other.
Right now everything is working fine, but when the screen's resolution is kinda small, the content gets chopped on the ...
0
votes
1
answer
546
views
How to prevent dropdown menu from retracting when trying to scroll
I have what are supposed to be scrollable menus for desktop and mobile. However, when you pull down the sidebar and release — the whole menu retracts. You can't open the menu and just scroll.
How do I ...
0
votes
2
answers
499
views
Why scrollable cards height are not increasing according to his content
I designed the scrollable cards. The cards are only for mobile screens. The current issue is that more data gets encapsulated inside the scrollable wrapper as the content grows. No matter how long the ...
0
votes
1
answer
63
views
Table is not scrollable
I coded a table and this table has so much information in it that if the page is on 100% more than half of the table is missing.
I hope you can help me. You have to add more of the table cells to ...
4
votes
1
answer
2k
views
How can I disable the horizontal stretching/overscroll when using the `verticalScroll` modifier?
I want a scrollable view which I'm doing by using the verticalScroll modifier on a column.
Column(modifier = Modifier.verticalScroll(rememberScrollState())) {
// ... I could provide more detail ...