flutter appbar not supporting RTL
I'm using appbar and I've added an Icon button in the leading. by making the app RTL this button stays on the left and won't come right. because app is multi language and should support RTL. all the parts works…
I'm using appbar and I've added an Icon button in the leading. by making the app RTL this button stays on the left and won't come right. because app is multi language and should support RTL. all the parts works…
I want to convert a string with the format 2023-10-10 15:30:40.345T+5:30 to date, which is something like 10 Oct 2023. I tried with the following dateFormat, it failed to parse and printed "failed to parse timestamp" let timestampString = "2023-10-10…
Swift newbie here. I want to show i view above the main view whenever an boolean ObservableObject haveOnGoingCall is changed, then in this new menus, if a button click occurs it should exit the new views and only show another…
My bottom navigation is malformed when I run my Flutter app on iOS. It seems to be floating: My scaffold looks like this: Scaffold( appBar: getAppbar(), drawer: getMainDrawer(context), floatingActionButton: ..., floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked, body: SafeArea( top: false, bottom: false, child: _widgetOptions.elementAt(_selectedIndex),…
I am trying to dynamically determine whether the AppIntent opens the app, as dictated by the openAppWhenRun property. Sometimes it should open the app and sometimes it shouldn't. What I have tried I tried having nested AppIntents so the main…
When trying to create a widget with minimal IOS 14, the background color or image refuses to fill the widget on the sides. It works with containerBackground Modifier, but it's for IOS 17 or newer. I also saw the same…
I have a react native sdk inside which all of the code is written in objective C, now we are migrating it to swift, i followed the official react native guide on how to migrate to swift, did everything as…
I am getting this react native error while building my app. I am trying to build my app but getting this error from a week. I just cloned a new project did pod install and tried to build. i have…
I am working on showing the React-native-View in the swift project. I download the bunlde file through asynchronous operation, save the bundle file in the app directory, and use it to create the RCTROOTVIEW. My current problem is that when…
I'm building my first app in Swift. I have RestaurantViewController. Half of the screen is filled by restaurant name, description, logo, atd. And under this I have UICollectionView(), filled with restaurant Coupons. Everything works fine, but I wanna disable scrolling…