Skip to content

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mohhamad-esmaili committed Oct 22, 2024
1 parent 533ccf2 commit 3a72fc2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,18 @@
<action android:name="android.intent.action.VIEW" />
<data android:scheme="bazaar" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="myket" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" android:host="cafebazaar.ir" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" android:host="myket.ir" />
</intent>

</queries>
</manifest>
4 changes: 4 additions & 0 deletions lib/features/shared_bloc/presentation/screens/about_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ class AboutView extends StatelessWidget {
context,
'bazaar://details?id=$packageName',
'https://cafebazaar.ir/app/$packageName',
//TODO: should change host from bazaar to Myket to publish in store
// 'myket://comment?id=$packageName',
// 'https://myket.ir/app/$packageName',
),
child: Container(
color: AppColorConstants.primaryDarkColor.withOpacity(0.5),
Expand All @@ -49,6 +52,7 @@ class AboutView extends StatelessWidget {
Text("${appLocalizations.rateApp} ",
style: themeData.textTheme.labelLarge),
Icon(Icons.handshake_outlined, color: Colors.blueAccent[700]),
//TODO: CHANGE BAZAAR TO MYKET IN PUBLISH IN EACH PLATFORM
Text(" ${appLocalizations.bazaar}",
style: themeData.textTheme.labelLarge),
],
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "clone app of google keepNote with Bloc"

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.1+4
version: 1.0.1+5

environment:
sdk: '>=3.4.4 <4.0.0'
Expand Down

0 comments on commit 3a72fc2

Please sign in to comment.