8 lines
161 B
C#
8 lines
161 B
C#
namespace Expose.MyIT.Client.Shared;
|
|
|
|
public partial class MainLayout
|
|
{
|
|
bool _DrawerOpen = true;
|
|
|
|
void DrawerToggle() => _DrawerOpen = !_DrawerOpen;
|
|
} |