π Lockscreen Widgets
What are the lockscreen widgets?
Setting widgets
Configuring widgets
Building widgets
using Nitrocid.Users.Login.Widgets;
namespace MyMod
{
internal class MyWidget : BaseWidget, IWidget
{
public override string Cleanup(int left, int top, int width, int height)
{
// Your cleanup code here
}
public override string Initialize(int left, int top, int width, int height)
{
// Your initialization code here
}
public override string Render(int left, int top, int width, int height)
{
// Your widget rendering code here
}
}
}Last updated