Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 898 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 898 Bytes

FTIndicatorXamariniOS

This is FTIndicator for Xamarin iOS, only implemented Toast and in app notification

Based on FTIndicator : https://github.com/liufengting/FTIndicator

Compile file: Toast : https://github.com/JimmyPun610/FTIndicatorXamariniOS/blob/master/FTToastIndicatorLib/FTToastIndicatorLib.dll

In app notification : https://github.com/JimmyPun610/FTIndicatorXamariniOS/blob/master/FTNotifcationLibrary/FTNotifcationLibrary.dll

Usage:

  1. Toast
FTToastIndicator.SetToastIndicatorStyle(UIBlurEffectStyle.Dark); //Change to Android style
FTToastIndicator.ShowToastMessage(message); //Show the message
  1. In app notification
    FTNotificationIndicator.ShowNotificationWithImage(new UIImage("ImageName.png"), "Title", "Message", new FTNotificationTapHandler(()=>
                {
                    //Action when user tapped the notification
                }));