1234567891011121314151617 |
- using Android.Content;
- using Android.Views;
- using AndroidX.CoordinatorLayout.Widget;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace InABox.Avalonia.Platform.Android.Barcodes;
- public class BarcodeView : FrameLayout
- {
- public BarcodeView(Context context) : base(context)
- {
- }
- }
|