Page
Page - This is the Container that opens within the plugin. There can be components inside the Container. The page itself is just a module with a few functions.
Blank page
local Setting = require(script.Parent.Parent.Setting);
local PluginComponents = require(script.Parent.Parent.libs.PluginComponents.PluginComponents);
local Page = {}
Page.Container = nil;
Page.Controller = nil;
Page.Init = function()
end
Page.Open = function()
end
return Page
Methods
.Init = function()
.Open = function()
Properties
Page.Container
.Controller
Last updated