-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Added dark theme support 2. Added new credit card payment XAML page 3. Added ripple effects for touch interaction 4. Improved the styles applied in XAML pages 5. Embedded fonts support 6. Thumbnail view for viewing/selecting the XAML pages.
- Loading branch information
1 parent
1eded92
commit 14c902b
Showing
968 changed files
with
27,475 additions
and
27,113 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="8" android:versionName="6.1" package="com.syncfusion.xamarin.uikit" android:installLocation="internalOnly"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="8" android:versionName="18.4" package="com.syncfusion.xamarin.uikit" android:installLocation="internalOnly"> | ||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" /> | ||
<application android:label="Essential UI Kit"></application> | ||
</manifest> |
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
35 changes: 35 additions & 0 deletions
35
EssentialUIKit.Android/Renderers/TransitionNavigationPageRenderer.cs
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 @@ | ||
using Android.Content; | ||
using Android.Support.V4.App; | ||
using EssentialUIKit.Droid.Renderers; | ||
using Xamarin.Forms; | ||
using Xamarin.Forms.Platform.Android.AppCompat; | ||
|
||
[assembly: ExportRenderer(typeof(NavigationPage), typeof(TransitionNavigationPageRenderer))] | ||
|
||
namespace EssentialUIKit.Droid.Renderers | ||
{ | ||
public class TransitionNavigationPageRenderer : NavigationPageRenderer | ||
{ | ||
public TransitionNavigationPageRenderer(Context context) | ||
: base(context) | ||
{ | ||
} | ||
|
||
protected override void SetupPageTransition(FragmentTransaction transaction, bool isPush) | ||
{ | ||
if (transaction != null) | ||
{ | ||
if (isPush) | ||
{ | ||
transaction.SetCustomAnimations(Resource.Animation.abc_slide_in_bottom, 0, 0, 0); | ||
} | ||
else | ||
{ | ||
transaction.SetCustomAnimations(0, Resource.Animation.abc_slide_out_bottom, 0, 0); | ||
} | ||
|
||
base.SetupPageTransition(transaction, isPush); | ||
} | ||
} | ||
} | ||
} |
Binary file modified
BIN
+150 KB
(2900%)
EssentialUIKit.Android/Resources/drawable/ChatMessageBackground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.