I used this code for opening a window. but there is no option for adding content.
Currently it's duplicate my current base window. Also there is no explanation in the package documentation.
(https://pub.dev/packages/desktop_multi_window)
final window = await DesktopMultiWindow.createWindow(jsonEncode({
'args1': 'Sub window',
'args2': 100,
'args3': true,
'business': 'business_test',
}));
window
..setFrame(const Offset(0, 0) & const Size(1280, 720))
..center()
..setTitle('Another window')
..show();
Does anyone know how to do it?
Appreciate your help.
At packages example side there is an example code posted;