skip to Main Content

Issues in flutter carplay

I am using Flutter CarPlay and experiencing the following issues: When opening CarPlay without first opening the app on mobile, a blank screen appears. After killing the app on mobile, CarPlay shows a blank screen, which is only resolved by…

VIEW QUESTION

Flutter Error: Exception: Failed to load sertifikasi: type 'String' is not a substype of type 'int' of index

here is my code import 'package:flutter/material.dart'; import 'package:mobile_smarcerti/app/modules/sertifikasi/views/detail_sertifikasi_body.dart'; import 'package:mobile_smarcerti/app/modules/sertifikasi/views/detail_sertifikasi_page.dart'; import 'package:mobile_smarcerti/pages/upload_sertifikasi_dosen.dart'; import 'package:mobile_smarcerti/services/api_service.dart'; class SertifikasiBody extends StatefulWidget { const SertifikasiBody({super.key}); @override __SertifikasiScreenState createState() => __SertifikasiScreenState(); } class __SertifikasiScreenState extends State<SertifikasiBody> { late Future<List<dynamic>> _sertifikasiFuture; @override void initState() { super.initState();…

VIEW QUESTION

Android Studio – Repeat android animation with multiple translations and durations offsets

I want to an animation that infinitely moves images up and down. However when I run my code, the animation only happens once. This is the animation xml: <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/linear_interpolator" android:repeatCount="3" android:repeatMode="restart"> <!-- move down -->…

VIEW QUESTION
Back To Top
Search