So are you trying to make it where the selected dates on the admin screen for say start and end are the dates where the app opens for users and then closes again. So app is availiable from start date to end date and both of those are set on the admin page? For that you would for sure need to store those values in a SP list or something. That is only needed b/c the app will have to fetch that data after it is closed then reopened.
// here is an example of how to pull that data from SP back to the app when it loads.
AdminScreen.OnVisible -> UpdateContext({SPListData: LookUp(YourListName, ID = 1)})
StartDatePicker.DefaultDate -> SPListData.StartDate
EndDatePicker.DefaultDate -> SPListData.EndDate
// Now if the admin wants to change those you will have to patch to that item again to save the changes:
Patch(SPListData, LookUp(SPListData, ID =1), {StartDate: DatePickerStart.SelectedDate, EndDate: DatePickerEnd.SelectedDate})