import totalcross.notification.Notification;
import totalcross.notification.NotificationManager;
import totalcross.sys.Settings;
import totalcross.ui.Button;
import totalcross.ui.Edit;
import totalcross.ui.MainWindow;
public class HelloWorld extends MainWindow {
Settings.uiAdjustmentsBasedOnFontHeight = true;
setUIStyle(Settings.Material);
Edit title = new Edit("Title");
add(title, LEFT+150, TOP+100, FILL-150, PREFERRED);
Edit text = new Edit("Text");
add(text, LEFT+150, AFTER+50, FILL-150, PREFERRED);
btnHello = new Button("Notify!");
btnHello.addPressListener(
Notification.Builder builder = new Notification.Builder();
Notification notification = builder
NotificationManager.getInstance().notify(notification);
add(btnHello, CENTER, AFTER+150, PARENTSIZE+38, PARENTSIZE+8);