20 lines
390 B
TypeScript
20 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',
|
|
}),
|
|
}),
|
|
}),
|
|
],
|
|
});
|