Html – How do I make this search bar drop down vertical?
I seem to not be able to figure this out for the life of me, I just started to learn to code recently so some answer I have found I just didn't know how to replace my current code with…
I seem to not be able to figure this out for the life of me, I just started to learn to code recently so some answer I have found I just didn't know how to replace my current code with…
I have text objects (text1, text2, etc) with formatting information (eg. [bold, italic]). Now I want to concat these texts and format them in HTML. For a simple case it would transform the following text1[bold,italic] text2[] text3[bold] into this HTML:…
I have a basic HTML input field (for phone numbers), that currently lets the user type and submit whatever they want inside: 923-98-Ilovekittens :3 However, I want the field to look like this: +1 (___)-___-____ And as the user types…
I'm trying to display the user input double (may be without decimal dot and that follows) number as a formatted value e.g. 123456789012.1234 as 12345,67,89,012.1234 using not the western numbering system, but using Indian Subcontinent numbering system as shown. Preferably,…
I want to create something like this: The background/highlight effect is a rounded rectangle with .regularMaterial and .stroke(.black). I have tried using AttributedString and setting the .backgroundColor but this doesn't allow me to use materials, nor can I round the…
I have use an API for Gemini AI, this AI sends me a text with stars and tags for format the text like this: **Knowledge and Information:** **Answer questions:** Provide factual information and knowledge on a wide range of topics.…
I am trying to get a little description card to pop out from behind an image in a div within a grid. I got the transitions working well, but I need to get the card behind the image. This is…
I can't seem to get <label> and <input> on the same line under "Schedule preferences". CodePen here. I've tried floating and table cell attribute manipulation. Any help would be greatly appreciated as something this simple shouldn't be giving me such…
I Hope anyone can help.. How to format number with thousand separator whil this's data get form API. My Code is like this: Future<List<Data>> fetchData() async { var url = Uri.parse('https://bps-3301-asap.my.id/api/sensus-tani-rtup'); final response = await http.get(url); if (response.statusCode == 200)…
When you get a response from open ai after making api call. it will return a json stringified response and when you render it in a React component, it's not properly formatted. for example. if the responses contains numbered list,…