BarcodeView.cs 370 B

1234567891011121314151617
  1. using Android.Content;
  2. using Android.Views;
  3. using AndroidX.CoordinatorLayout.Widget;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace InABox.Avalonia.Platform.Android.Barcodes;
  10. public class BarcodeView : FrameLayout
  11. {
  12. public BarcodeView(Context context) : base(context)
  13. {
  14. }
  15. }