mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 05:43:30 +00:00
18 lines
412 B
C#
18 lines
412 B
C#
using System;
|
|
using System.Reflection;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Controls;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.UWP.Services
|
|
{
|
|
public class ReflectionService : IReflectionService
|
|
{
|
|
public Func<double, double, SizeRequest> GetVisualElementOnSizeRequest(ExtendedTableView tableView)
|
|
{
|
|
// TODO
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|