Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/view/robotic_arm_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
],
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(4.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand All @@ -196,7 +196,7 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
return Expanded(
child: Padding(
padding:
const EdgeInsets.symmetric(horizontal: 4),
const EdgeInsets.symmetric(horizontal: 1),
child: SizedBox(
height: servoHeight,
child: ServoCard(
Expand All @@ -218,12 +218,12 @@ class _RoboticArmScreenState extends State<RoboticArmScreen> {
}),
),
),
const SizedBox(height: 3),
const SizedBox(height: 2),
Expanded(
child: Scrollbar(
controller: provider.timelineScrollController,
thumbVisibility: true,
thickness: 8,
thickness: screenHeight * 0.006,
radius: const Radius.circular(4),
child: TimelineScrollView(
totalTimelineItems: provider.totalTimelineItems,
Expand Down
Loading
Loading