how to implement this overlay with flutter?
how to implement this overlay with flutter? notice the triangle shape in the position of the button.
how to implement this overlay with flutter? notice the triangle shape in the position of the button.
I am developing an Android app using Flutter and currently working on implementing notifications. I have successfully set up weekly notifications, but I want to add a condition: the notification should be triggered only if the app has not been…
I want to change the css file depending on if the user is on mobile or on desktop. I couldnt find anything that actually works so i just restorted to using the js below to redirect the user to a…
I am building a very basic html-only site to display a specifically-sized project that is really only meant to be viewed on a computer. I seem to only find information on how to make your site mobile-friendly, but I want…
late DateTime datePicked = DateTime.now(); void showDatePickerForUser() { showDatePicker( context: context, initialDate: DateTime.now(), firstDate: DateTime.now(), lastDate: DateTime.now().add(const Duration(days: 365)), ).then((value) { setState(() { datePicked = value!; }); }); } Container( height: MediaQuery.of(context).size.height * 0.08, width: MediaQuery.of(context).size.width * 0.9, decoration: BoxDecoration(…
I am developing one chat app and I am adding data to chatList which is the list of model and I am getting the newest data from the backend like when I call API it will give the last message…
I'm currently developing with some friends a mobile app using Flutter. But we can't seem to find a working method to install the app on iPhone (none of us has a mac pc) Any suggestions? We even tried installing first…
I need to scroll on all screens, not just one listview, so I use CustomScrollView, but it gives me a renderbox exception. and code has two listviews first listview is horizontal, and second listview is vertical, and I need to…
I'm implementing BLOC in my project. I have been used it quite a lot in my other projects. The code works in my other project but not on my new project. This is my code: Widget _buildEvents() { return BlocProvider<EventBloc>(…
I have a layout that is similar to a console where there is a menu bar on top, an input line in the bottom, and in the middle there is a scrolling div with text that gets added as you…