Skip to content

Commit

Permalink
changed info button
Browse files Browse the repository at this point in the history
  • Loading branch information
YannMarti committed May 12, 2022
1 parent 99c3dcb commit e0d37bf
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions vidaia/lib/pages/home/redeem/redeem_info_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,22 @@ class _RedeemInfoPageState extends State<RedeemInfoPage> {
SizedBox(
width: 20,
),

/*
IconButton(onPressed: () {
_launchInBrowser(
Uri.parse(widget.reward.url));
}, icon: Icon(
Icons.info_outlined,
color: Colors.black,
)),
*/
RoundedButton(
colour: PRIMARY,
width: 20,
child: Icon(
Icons.info_outlined,
color: Colors.white,
child: Text(
'More Information',
style: TextStyle(color: Colors.white),
),
onPressed: () {
_launchInBrowser(
Expand Down

0 comments on commit e0d37bf

Please sign in to comment.