skip to Main Content

how do i align the icon totally in between the circular button? – Flutter

Container( height: 55, width: 55, decoration: const BoxDecoration( shape: BoxShape.circle, border: Border.symmetric( horizontal: BorderSide( color: Colors.black, width: 2.0, style: BorderStyle.solid, ), vertical: BorderSide( color: Colors.black, width: 2.0, style: BorderStyle.solid, ), ), boxShadow: [ BoxShadow( color: Colors.black, offset: Offset(3.5, 3.5), blurRadius:…

VIEW QUESTION

RCTView generated view config for validAttributes does not match native – React native

React Native application loads then crashes even though it was working a week ago. The error generated is: RCTView generated view config for validAttributes does not match native, missing: onPointerOut onTouchCancel onStartShouldSetResponder onTouchStart gap onStartShouldSetResponderCapture onMoveShouldSetResponderCapture columnGap onPointerLeaveCapture onTouchEnd accessibilityCollection…

VIEW QUESTION

Flutter Fetch API

Im trying to fetch data from external api, but my screen show this error message: [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: type 'Null' is not a subtype of type 'bool' My Screen code is this: class PricesScreen extends StatefulWidget { const PricesScreen({super.key}); @override…

VIEW QUESTION
Back To Top
Search