You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometime when i tried to click back button (eg: ListTemplate) and the Android Auto is loading and loading
"react-native": "0.71.18",
"react-native-carplay": "^2.4.1-beta.0",
Sometime when i tried to click back button (eg: ListTemplate) and the Android Auto is loading and loading
"react-native": "0.71.18",
"react-native-carplay": "^2.4.1-beta.0",
Screen.Recording.2025-01-08.at.11.22.47.mov
and here is my template:
import { ListTemplate } from 'react-native-carplay';
const sections = Array.from({ length: 26 }).map((, i) => ({
header:
Header ${String.fromCharCode(97 + i).toLocaleUpperCase()}
,items: Array.from({ length: 3 }).map((, j) => ({
text:
Item ${j + 1}
,})),
sectionIndexTitle: String.fromCharCode(97 + i).toLocaleUpperCase(),
}));
export const releasePumpTemplate = new ListTemplate({
sections,
title: 'Release Pump',
headerAction: { type: 'back' },
});
The text was updated successfully, but these errors were encountered: