skip to Main Content

i have a problem loading a code in flutter. any time i run it , it says FlutterError

i tried to wrap my cintainer with a sizedBox but it threw an error. i honestly don't know what to do // ignore_for_file: prefer_const_constructors, file_names, prefer_const_literals_to_create_immutables, use_full_hex_values_for_flutter_colors import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class RowItemsWidget extends StatelessWidget { const RowItemsWidget({super.key}); @override Widget…

VIEW QUESTION

The class 'WebViewController' doesn't have an unnamed constructor – Flutter

I have a problem with my flutter app using the package webview_flutter , here Is my code: pubspec.yaml webview_flutter: ^4.0.6 dart WebViewController breachWebViewController = WebViewController() ..setJavaScriptMode(JavaScriptMode.unrestricted) ..setBackgroundColor(const Color(0x00000000)) ..setNavigationDelegate( NavigationDelegate( onProgress: (int progress) { // Update loading bar. }, onPageStarted:…

VIEW QUESTION
Back To Top
Search