21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
|
import Adw from 'gi://Adw';
|
||
|
|
||
|
|
||
|
App.config({
|
||
|
windows: () => [
|
||
|
Widget.Window({
|
||
|
name: 'test',
|
||
|
|
||
|
child: Widget.Box({
|
||
|
setup: (self) => {
|
||
|
self.toggleCssClass('base');
|
||
|
},
|
||
|
|
||
|
child: new Adw.SplitButton({
|
||
|
label: 'test',
|
||
|
}),
|
||
|
}),
|
||
|
}),
|
||
|
],
|
||
|
});
|