Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
type
TForm1 = class( TForm )
...
private
FIsFullScreen: boolean;
FSaveBounds: TRect;
...
end;
...
procedure TForm1.Fullscreen( b: boolean );
begin
if FIsFullScreen <> b
then begin
if b
then begin
FSaveBounds := BoundsRect;
BorderStyle := bsNone;
WindowState := wsMaximized;
FormStyle := fsStayOnTop
end
else begin
FormStyle := fsNormal;
WindowState := wsNormal;
BorderStyle := bsSizeable;
BoundsRect := FSaveBounds
end;
FIsFullScreen := b
end
end;