Files
App/components/CarPlay/Navigation.tsx
T
Violet Caulfield 76a508cde6 carplay rework
2025-02-23 11:29:56 -06:00

17 lines
451 B
TypeScript

import { CarPlay, TabBarTemplate } from "react-native-carplay";
import CarPlayHome from "./Home";
import CarPlayDiscover from "./Discover";
const CarPlayNavigation : TabBarTemplate = new TabBarTemplate({
title: 'Navigation',
templates: [
CarPlayHome,
CarPlayDiscover
],
onTemplateSelect(template, e) {
if (template)
CarPlay.pushTemplate(template, true)
},
});
export default CarPlayNavigation;