-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathFMXStarterKit.dpr
More file actions
56 lines (50 loc) · 2.66 KB
/
Copy pathFMXStarterKit.dpr
File metadata and controls
56 lines (50 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{*******************************************************************************
Copyright (c) 2026 Fajar Donny Bachtiar (Blangkon FA)
Licensed under the Apache License, Version 2.0.
See the LICENSE file in the project root for license details.
*******************************************************************************}
program FMXStarterKit;
{$R *.dres}
uses
System.StartUpCopy,
FMX.Forms,
frMain in 'frMain.pas' {Form3},
frDetail in 'frames\frDetail.pas' {FDetail: TFrame},
frLoading in 'frames\frLoading.pas' {FLoading: TFrame},
frLogin in 'frames\frLogin.pas' {FLogin: TFrame},
frHome in 'frames\frHome.pas' {FHome: TFrame},
BFA.App.Types in 'sources\app\BFA.App.Types.pas',
BFA.App.Func in 'sources\app\BFA.App.Func.pas',
BFA.App.Services in 'sources\app\BFA.App.Services.pas',
BFA.App.Context in 'sources\app\BFA.App.Context.pas',
BFA.Resource.Message in 'sources\resources\BFA.Resource.Message.pas',
BFA.Exception.Base in 'sources\exceptions\BFA.Exception.Base.pas',
BFA.Control.Frame in 'sources\controls\BFA.Control.Frame.pas',
BFA.Control.Form.Message in 'sources\controls\BFA.Control.Form.Message.pas',
BFA.Control.Keyboard in 'sources\controls\BFA.Control.Keyboard.pas',
BFA.Control.Permission in 'sources\controls\BFA.Control.Permission.pas',
BFA.Control.PushNotification in 'sources\controls\BFA.Control.PushNotification.pas',
BFA.Helper.Main in 'sources\helpers\BFA.Helper.Main.pas',
BFA.Helper.Bitmap in 'sources\helpers\BFA.Helper.Bitmap.pas',
BFA.Helper.Dataset in 'sources\helpers\BFA.Helper.Dataset.pas',
BFA.Helper.APIRequest in 'sources\helpers\BFA.Helper.APIRequest.pas',
BFA.Helper.OpenURL in 'sources\helpers\BFA.Helper.OpenURL.pas',
BFA.Android.SAF.Modern in 'sources\helpers\SAF\BFA.Android.SAF.Modern.pas',
BFA.iOS.SAF.Modern in 'sources\helpers\SAF\BFA.iOS.SAF.Modern.pas',
BFA.Helper.SAF in 'sources\helpers\BFA.Helper.SAF.pas',
uDM in 'uDM.pas' {DM: TDataModule},
frListMenu in 'frames\controls\frListMenu.pas' {FListMenu: TFrame},
frConfirmation in 'frames\controls\frConfirmation.pas' {FConfirmation: TFrame},
frDemoPermission in 'frames\sampledemo\frDemoPermission.pas' {FDemoPermission: TFrame},
frDemoJSONToDataset in 'frames\sampledemo\frDemoJSONToDataset.pas' {FDemoJSONToDataset: TFrame},
frDemoRestAPI in 'frames\sampledemo\frDemoRestAPI.pas' {FDemoRestAPI: TFrame},
frDemoPushNotif in 'frames\sampledemo\frDemoPushNotif.pas' {FDemoPushNotif: TFrame},
frDemoSAF in 'frames\sampledemo\frDemoSAF.pas' {FDemoSAF: TFrame};
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.CreateForm(TFMain, FMain);
Application.CreateForm(TDM, DM);
Application.Run;
end.