Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
144 views

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 ...
msc87's user avatar
  • 1,047
-1 votes
0 answers
66 views

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 ...
wmarx's user avatar
  • 45
0 votes
1 answer
89 views

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 ...
koen's user avatar
  • 5,872
0 votes
1 answer
39 views

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: ...
Alex's user avatar
  • 66.6k
2 votes
1 answer
82 views

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 ...
sg-gs2025's user avatar
0 votes
0 answers
65 views

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. ...
Stephan's user avatar
  • 47
0 votes
2 answers
276 views

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: /** * ...
PRO's user avatar
  • 484
3 votes
1 answer
256 views

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 ...
karlmz's user avatar
  • 57
0 votes
0 answers
52 views

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 ...
Felix Dombek's user avatar
  • 14.6k
1 vote
1 answer
115 views

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 *...
Sumin Lee's user avatar
2 votes
1 answer
63 views

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 ...
abhilash katta's user avatar
1 vote
1 answer
77 views

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(...
Terry Windwalker's user avatar
4 votes
1 answer
548 views

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 = ...
Ibtihaj's user avatar
  • 71
1 vote
2 answers
94 views

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 ...
Xavier Soh's user avatar
0 votes
1 answer
141 views

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 ...
Shaun Roselt's user avatar
  • 4,464
1 vote
2 answers
1k views

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 ...
kokserek's user avatar
  • 589
1 vote
1 answer
121 views

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 ...
bzark's user avatar
  • 87
0 votes
0 answers
37 views

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 ...
Walrus's user avatar
  • 20.6k
0 votes
1 answer
115 views

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 ...
Emilio's user avatar
  • 13
0 votes
1 answer
112 views

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 ...
Gargo's user avatar
  • 1,378
1 vote
0 answers
80 views

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 ...
Leong's user avatar
  • 348
0 votes
0 answers
88 views

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 ...
Hasenburg's user avatar
2 votes
2 answers
1k views

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 ...
Nick Schepers's user avatar
1 vote
1 answer
326 views

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() { ...
user8251233's user avatar
2 votes
1 answer
699 views

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 ...
Nns_ninteyFIve's user avatar
1 vote
3 answers
1k views

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 ...
Adil's user avatar
  • 11
0 votes
1 answer
403 views

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 ...
sianami's user avatar
  • 979
1 vote
2 answers
111 views

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 ...
gaith's user avatar
  • 11
2 votes
2 answers
634 views

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 ...
Maya Linetsky's user avatar
0 votes
0 answers
78 views

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 ...
MJELVEH's user avatar
  • 291
0 votes
1 answer
1k views

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 ...
Cem's user avatar
  • 13
0 votes
1 answer
72 views

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 ...
Ardhya Chandra's user avatar
-1 votes
1 answer
32 views

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 ...
debachl23's user avatar
2 votes
1 answer
715 views

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/...
Izilbeth's user avatar
0 votes
1 answer
119 views

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 ...
Whitebeard's user avatar
0 votes
1 answer
98 views

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 ...
Dylan Shapiro's user avatar
1 vote
1 answer
362 views

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 ...
A. Rokbi's user avatar
  • 633
0 votes
1 answer
249 views

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: ...
Tia's user avatar
  • 127
0 votes
2 answers
91 views

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 ...
Dave Ragos's user avatar
0 votes
1 answer
173 views

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 ...
GerfnitAuthor's user avatar
0 votes
1 answer
1k views

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 ...
user2395207's user avatar
1 vote
1 answer
565 views

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. ...
Senthur Kumaran's user avatar
3 votes
0 answers
495 views

I have a page made like this Column( children: [ Expanded( child: Padding( padding: const EdgeInsets.fromLTRB( 20, ...
aleee's user avatar
  • 130
0 votes
0 answers
353 views

I have some stateless scrollable widget like this `class ProfileScreen extends StatelesslWidget { final dataKey = new GlobalKey(); @override Widget build(BuildContext context) { BlocProvider....
Nikolay Michurin's user avatar
0 votes
1 answer
164 views

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 ...
Sardonic777's user avatar
2 votes
1 answer
815 views

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 ...
DJ22T's user avatar
  • 1,648
0 votes
1 answer
546 views

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 ...
user avatar
0 votes
2 answers
499 views

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 ...
Sohaib Ashraf's user avatar
0 votes
1 answer
63 views

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 ...
DerBZocker2's user avatar
4 votes
1 answer
2k views

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 ...
B Roy Dawson's user avatar

1
2 3 4 5
12