Skip to content

Commit

Permalink
feat(#661): hide HX sharing for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Nov 14, 2024
1 parent 9e248d8 commit 6904613
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/lib/login/pages/login.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:io';

import 'package:dropdown_button2/dropdown_button2.dart';
import 'package:provider/provider.dart';

Expand Down Expand Up @@ -128,9 +130,11 @@ class LoginPage extends HookWidget {
),
),
],
bottomWidget: Column(
children: _buildHealthXShareContent(context),
)
bottomWidget: Platform.isAndroid
? Column(
children: _buildHealthXShareContent(context),
)
: null,
);
}

Expand Down

0 comments on commit 6904613

Please sign in to comment.