-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT] Added logic to show What's new.
[FEAT] Replaced layouts in NavigationSuiteScaffold with measurePolicies. - This will ensure the state of expendables, etc., will be preserved during orientation changes. [FEAT] Enhanced Toast with new features. - Toast now handles the back-button. - Supports expanded state; click to expand. - Supports swipe to dismiss. - Fixed toast now using mutex. - Renders at the top of everything during shared transition. [FEAT] Introduced showPlatformToast in context. - Now everything depends on the Context.showPlatformToast for showing Android toasts. - It also supports `Duration`.
- Loading branch information
1 parent
1652713
commit ff38b24
Showing
10 changed files
with
389 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<resources> | ||
<string name="what_s_new_latest" translatable="false"> | ||
<b>What\'s new</b> | ||
<font color='grey'> | ||
\n🐞 Bug fixes and performance enhancements | ||
\n✨ Enhanced Toast/Snackbar: Now supports swipe to dismiss and expandability | ||
\n<b>In Focus</b> | ||
\n1. 🎥 In-App Media Player. | ||
\n2. Support for various file types: GIF, SVG, etc. | ||
\n3. General performance improvements | ||
</font> | ||
</string> | ||
|
||
<!--20_dev20--> | ||
<string name="what_s_new_20_dev20"> | ||
<b>0.1.0-dev20</b> | ||
<font color='grey'> | ||
\n🌟 Thanks for using our app! ❤️😍 | ||
\n🌟 Biometric Authentication: Supports Android 9+. | ||
\n🌟 UI Updates: We\'ve made improvements to the design and navigation. | ||
\n🌟 Introduced Favourites and Recycle Bin in Folders | ||
\n🌟 Bug Fixes: We\'ve resolved issues with loading and app lock. | ||
\n🌟 Some minor bug fixes | ||
</font> | ||
</string> | ||
|
||
<!----> | ||
<string-array name="what_s_new"> | ||
<!--first is always latest--> | ||
<item>@string/what_s_new_latest</item> | ||
<item>@string/what_s_new_20_dev20</item> | ||
</string-array> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.