Html – How can I make a horizontally sliding image on a website?
So I've been trying for a few days to get this to work but I'm no closer. I'm making a website and at the top I'm trying to get a square image, a map to be specific, that's as wide,…
So I've been trying for a few days to get this to work but I'm no closer. I'm making a website and at the top I'm trying to get a square image, a map to be specific, that's as wide,…
Im trying to make a meditation page, when you click on start, it will start the timer and sound will be playing. I cant play the sound, it's showing many error. I have tried many ways. Please help me to…
I'm building a website using WordPress with Divi Theme. I try to make specific settings for the phone view of the web page and every time, when I change something (I change the size, I add text or image, I…
This is a weired Layout issue I recently occured. I have tried many different ways to construct all fails. Here is what I want: In a row; the text should expand to the row; the text has a Container as…
I am getting this error right here after upgrading to XCode 15 with react native version 0.72.4 in Macbook M1: ld: warning: could not create compact unwind for _fa3d73c773a947d51: does not use RBP or RSP based frame ld: warning: Could…
I am trying to implement navigation with persistent widgets in Flutter, but calling Navigation.of(context).pushNamed('/route') yields a "Navigator operation requested with a context that does not include a Navigator" error. The code for each of the classes is as follows: main.dart…
I am implementing three buttons (5, 10, and 15 minutes) that are supposed to schedule a future notification for the user. E.g. when they click 5 minutes, a notification will pop up after 5 minutes with a message no matter…
I have a button that creates a new a navigation route, using the same build method as the page it's in. onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => ReadDb(value)), ); }, Calling the build method, this error gets thrown…
import 'package:flutter/material.dart'; class SignUpPage extends StatefulWidget { const SignUpPage({super.key}); @override State<SignUpPage> createState() => _SignUpPageState(); } class _SignUpPageState extends State<SignUpPage> { bool oT = true;//obscure-text for password @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( height: MediaQuery.of(context).size.height, width:…
There's some problem going on with my Flutter Icons. They were working fine before, but when i added custom fonts, all Icons started appearing as white boxed as shown below. the Icons syntax is perfect, Tried commenting new added features,…