- Added a new "Apps" tab in the TabsLayout, providing users with access to various applications. - Created AppsScreen to display app entries, including a schedule feature with a calendar icon. - Implemented routing for the schedule and course screens under the new Apps tab structure. - Updated navigation hrefs to reflect the new Apps section, improving overall user experience. - Refactored HomeScreen to manage bottom tab visibility based on scroll events, enhancing usability.
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import { ScheduleScreen } from '../../../../../src/screens/schedule';
|
|
|
|
export default function ScheduleRoute() {
|
|
return <ScheduleScreen />;
|
|
}
|