Skip to content

Commit 117c601

Browse files
fix: Robotic arm UI (#2776)
Co-authored-by: Marc Nause <[email protected]>
1 parent fc59abd commit 117c601

File tree

6 files changed

+577
-487
lines changed

6 files changed

+577
-487
lines changed

lib/view/robotic_arm_screen.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
184184
],
185185
body: SafeArea(
186186
child: Padding(
187-
padding: const EdgeInsets.all(8.0),
187+
padding: const EdgeInsets.all(4.0),
188188
child: Column(
189189
crossAxisAlignment: CrossAxisAlignment.start,
190190
children: [
@@ -196,7 +196,7 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
196196
return Expanded(
197197
child: Padding(
198198
padding:
199-
const EdgeInsets.symmetric(horizontal: 4),
199+
const EdgeInsets.symmetric(horizontal: 1),
200200
child: SizedBox(
201201
height: servoHeight,
202202
child: ServoCard(
@@ -218,12 +218,12 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
218218
}),
219219
),
220220
),
221-
const SizedBox(height: 3),
221+
const SizedBox(height: 2),
222222
Expanded(
223223
child: Scrollbar(
224224
controller: provider.timelineScrollController,
225225
thumbVisibility: true,
226-
thickness: 8,
226+
thickness: screenHeight * 0.006,
227227
radius: const Radius.circular(4),
228228
child: TimelineScrollView(
229229
totalTimelineItems: provider.totalTimelineItems,

0 commit comments

Comments
 (0)