Skip to content

Commit

Permalink
feat: added vertical buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
e200 committed Nov 20, 2021
1 parent 30d30c5 commit 881d4f6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,32 @@ class RemoteControl extends StatelessWidget {
icon: const Icon(FeatherIcons.volumeX),
onPress: () {},
),
VerticalButtons(
children: [
ShadowedIconButton(
shadowOpacity: 0,
icon: const Icon(FeatherIcons.chevronUp),
onPress: () {},
),
const SizedBox(height: 10),
Text(
'ch',
style: TextStyle(
color: Colors.grey.shade400,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 10),
ShadowedIconButton(
shadowOpacity: 0,
icon: const Icon(FeatherIcons.chevronDown),
onPress: () {},
),
],
),
],
),
const SizedBox(height: 30),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down

0 comments on commit 881d4f6

Please sign in to comment.