skip to Main Content

Flutter controller through signup button is not sending response back to database and also not showing any response in the console too

this is the signup1.dart function which is taking controllers from signup1 to signup2 void navigateToSignup2() { if (emailController.text.isNotEmpty && fullNameController.text.isNotEmpty && phoneNumberController.text.isNotEmpty && passwordController.text.isNotEmpty) { // Passing data from Signup1 to Signup2 Navigator.push( context, MaterialPageRoute( builder: (context) => SignUp2( fullName:…

VIEW QUESTION

Android Studio – My android projects getting these errors. Can anyone explain what is happening and how I can solve it?

Execution failed for task ':app:compileDebugKotlin'. Could not resolve all files for configuration ':app:detachedConfiguration6'. Multiple build operations failed. Immutable workspace contents have been modified: C:Userspctbo.gradlecachestransforms-4bb4bf547ee257a96dcca66ff7f5d0566. These workspace directories are not supposed to be modified once they are created. Deleting the directory…

VIEW QUESTION

I have a issue with "flutter build apk",also there's no flutter folder in the project/build/app/outputs

I'm triying to build my flutter apk using flutter build apk, But it says ` FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':uni_links2:verifyReleaseResources'. A failure occurred while executing com.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action Android resource linking failed ERROR:C:UsersDELLbitsnbytesHomeIQ…

VIEW QUESTION

Public void(View v) doesn't work. Android Studio

I got the following: public class activity_menuPrincipal extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); EdgeToEdge.enable(this); setContentView(R.layout.activity_menu_principal); ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> { Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()); v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom); return insets; }); public void abrirCalculadora(View v){ Intent…

VIEW QUESTION

Android Studio – TextField 'OnValueChange' called twice without entering any input

fun TextFieldWithIconsAndErrorLabel( text: String, charLimit: Int = Int.MAX_VALUE, keyboardType: KeyboardType = KeyboardType.Text, onValueChange: (String) -> Unit, ) { val keyboardController = LocalSoftwareKeyboardController.current var shouldShowMaxCharLimitError by remember { mutableStateOf(false) } BasicTextField( modifier = Modifier .fillMaxWidth(), value = text, onValueChange = {…

VIEW QUESTION
Back To Top
Search