mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-08 04:19:34 -05:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { CarPlay, TabBarTemplate } from "react-native-carplay";
|
|
|
|
const CarPlayNavigation : TabBarTemplate = new TabBarTemplate({
|
|
title: 'Navigation',
|
|
templates: [],
|
|
onTemplateSelect(template, e) {
|
|
if (template)
|
|
CarPlay.pushTemplate(template, true)
|
|
},
|
|
});
|
|
|
|
export default CarPlayNavigation; |