Guest User

Untitled

a guest
Apr 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using Plugin.Battery;
  2. using Xamarin.Forms;
  3.  
  4. namespace BatteryStatusDemo
  5. {
  6. public partial class MainPage : ContentPage
  7. {
  8. public MainPage()
  9. {
  10. InitializeComponent();
  11.  
  12. RemainingChargePercent.Text = "RemainingChargePercent: " + CrossBattery.Current.RemainingChargePercent + " %";
  13. Status.Text = "Status: " + CrossBattery.Current.Status;
  14. PowerSource.Text = "PowerSource: " + CrossBattery.Current.PowerSource;
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment