skip to Main Content

How can I run Tests in Compose Multiplatform from Android Studio? (command line works)

I'm currently trying to get testing setup in my first Compose Multiplatform project. I've followed the instructions here: https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-test.html#writing-and-running-tests-with-compose-multiplatform So far I can run tests successfuly from the command line using: ./gradlew :composeApp:connectedAndroidTest When I try to run them from…

VIEW QUESTION

Flutter – TextFormFields are not appearing in the Stack

My Error Image class Home extends StatelessWidget { const Home({super.key}); @override Widget build(BuildContext context) { return SafeArea( bottom: false, child: Scaffold( body: Stack( alignment: Alignment.topCenter, children: <Widget>[ Container( decoration: BoxDecoration(color: Colors.white), ), Positioned( top: 86, bottom: 294, child: Column( crossAxisAlignment:…

VIEW QUESTION

I got error while running flutter webview: E/MethodChannel#flutter/platform_views( 3411): Failed to handle method call . SUPPRESS_ERROR_PAGE

i just bought flutter webview source code from https://docs.meetmighty.com/mightyweb/ i had follow the instruction from documentation and run the source code but unsucessfull, and shown error as follows: E/MethodChannel#flutter/platform_views( 3411): Failed to handle method call E/MethodChannel#flutter/platform_views( 3411): java.lang.RuntimeException: Unknown feature…

VIEW QUESTION

I get a black screen when attempting to sign in via sso in my flutter app

I am calling the authorize method of the flutter_appAuth package on android. Here is what that method looks like: final result = await FlutterAppAuth().authorize( AuthorizationRequest( SSOConstants.clientId, SSOConstants.redirectUri, serviceConfiguration: AuthorizationServiceConfiguration( authorizationEndpoint: SSOConstants.authorizationEndpoint, tokenEndpoint: SSOConstants.tokenEndpoint, ), scopes: SSOConstants.scopes.split(' '), ), ); After…

VIEW QUESTION
Back To Top
Search