skip to Main Content

Android Studio – i am using an ImageSlideshow in my flutter app but i need to add some icons on the slide. something like the image below?

Center( child: Container( height: height * 0.3, width: width * 0.8, decoration: BoxDecoration( borderRadius: BorderRadius.circular(10), ), child: ImageSlideshow( indicatorColor: HexColor('#FFA300'), onPageChanged: (value) {}, autoPlayInterval: 3000, isLoop: true, children: [ Image.asset( 'assets/images/sample1.png', fit: BoxFit.cover, ), Image.asset( 'assets/images/sample2.png', fit: BoxFit.cover, ), Image.asset(…

VIEW QUESTION

Android Studio – When I build project in Android Studio it throws an error of com.payumoney.sdkui.ui.utils does not exist

When i build project in android studio it's throw an error: package com.payumoney.sdkui.ui.utils does not exist. Error at import com.payumoney.sdkui.ui.utils.PayUmoneyFlowManager; tried to add dependency implementation 'com.payumoney.sdkui:plug-n-play:1.6.1' in build.gradle. After adding dependency tried to build project: Error Caused by: java.lang.RuntimeException: Manifest…

VIEW QUESTION
Back To Top
Search