Island.dpr 366 B

123456789101112131415161718
  1. program Island;
  2. {$R *.dres}
  3. uses
  4. System.StartUpCopy,
  5. FMX.Forms,
  6. fdIsland in 'fdIsland.pas' {FormIsland},
  7. frmSmartphone in 'frmSmartphone.pas' {fSmartphone: TFrame};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.FormFactor.Orientations := [TFormOrientation.Landscape];
  12. Application.CreateForm(TFormIsland, FormIsland);
  13. Application.Run;
  14. end.