Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
54 views

On my flutter_map I have an IconButton which it should cause a SearchBar to appear only when clicked. When search is done, the SearchBar can go into hiding again and only said icon be visible. I have ...
bliako's user avatar
  • 1,221
2 votes
2 answers
380 views

I want the website to be fullscreen on iOS 26 so that there’s no background behind the search bar. I want it to be floating over the website, like the screenshot from appleparts.nl below. The other ...
Mennoo's user avatar
  • 21
0 votes
1 answer
47 views

Maui shell app. My page ThingListView has a CollectionView of items populated by a Sqlite query. Page A also has a SearchBar control which filters the list. Works beautifully. Now the user clicks an ...
Leigh's user avatar
  • 31
0 votes
1 answer
96 views

I want to use SearchBar from Compose, but I need to set another height. However, the problem is that if I do this, then the EditText inside & all the content would remain fixed at the top. I need ...
radus14's user avatar
  • 180
0 votes
1 answer
405 views

How can I update SearchBar results with every key pressed on the keyboard? there is no value and valuechanged variables on it. Here is the documentation. This is the sample: @Composable fun ...
NullPointerException's user avatar
1 vote
1 answer
6k views

I need a component, where the dropdown only shows when something has been typed into the input. Similar to mantine searchable select but using shadcn. Same way you type into google searchbar before ...
Rodiat Morin's user avatar
3 votes
1 answer
81 views

I am learning website building, html, css, javascript. I want to know how to redirect a search result to a url on click event. I have a simple local website, not online, just on my pc. I have few ...
mer063's user avatar
  • 89
0 votes
1 answer
154 views

I am using androidx.compose.material3.SearchBar in its expanded state in my Android project. I am using androidx.compose:compose-bom:2024.09.02 which includes androidx.compose.material3:material3-*:1....
JJD's user avatar
  • 52.7k
0 votes
2 answers
44 views

I cannot figure out how to get the EditText to not cover the area where my MenuItem icon button is within this SearchBar. Is there no best way this is handled? Layout snippet: <com.google....
hhaider's user avatar
0 votes
2 answers
81 views

Expanded( child: Column( mainAxisAlignment: MainAxisAlignment.start, children: [ SizedBox(height: 40), Row( children: [ SizedBox(...
CodeVault's user avatar
0 votes
1 answer
522 views

I made a search bar for my Flutter App and put a filtering button next to this search bar. When the user clicks on this filtering button, a 'bottom sheet' will open on the screen and user can select ...
Hüseyin KARABULUT's user avatar
0 votes
1 answer
31 views

I'm trying to search through List<Map<String, dynamic>> partyList where each map stores information about party. I implemented searchfield as follows. Padding( padding: const ...
Shrikant Agrawal's user avatar
1 vote
1 answer
2k views

I want search bar in a rectangle shape, but corner should be slightly rounded. by default its corder are too rounded. anyone can help me to make its corner customisable. Below is the code I tried. ...
Shubham Mogarkar's user avatar
1 vote
0 answers
35 views

A react newbie here. I have a functioning search bar by which it is possible to search and go to the url of the item in the list. This is achieved by useNavigate. I have two problems with this. What I ...
Cem's user avatar
  • 11
0 votes
0 answers
44 views

I've been working on a dynamic search bar in Excel, following this video, and it works fine. =IF(I3="","No match",FILTER(Table1,ISNUMBER(SEARCH(I3,Table1[Sujet])),"No match&...
Florent's user avatar
  • 17
2 votes
1 answer
128 views

When I run my angular (ionic) app on the browser everything works and looks fine. (Angular v17.0.2, Ionic v8.2.2). When I npx cap sync it and try it out on a device with Android Studio it looks like ...
Nenox's user avatar
  • 21
0 votes
2 answers
266 views

My Exact issue and same code is already reported by someone at the below git link. The code samples are also present in the GIT reported issue. When migrating my Xamarin app to MAUI and when using a ...
Saurabh's user avatar
  • 87
0 votes
0 answers
89 views

So I am pretty new to Wordpress and am trying to build a website. The thing I want to do is to add some tables with people's names and some info about them. Then in the website's page containing a ...
Marita's user avatar
  • 1
1 vote
1 answer
151 views

I want to put a search bar that looks for all occurrences of a word inside a Shiny app. I have this code which works with the boton_google so I would like to have it work with all buttons. For example,...
Raq's user avatar
  • 99
0 votes
3 answers
433 views

That my first post here. I'm a self-taught developer and I'd really like to learn how to put an image in the background of a search bar. I can imagine that HTML isn't suitable, but I don't know CSS ...
Stack Overflox User's user avatar
1 vote
1 answer
155 views

How can I type within a search box and have the letters I type turn bold from suggested words? For example, I type "he" in search bar and it looks like this as I type: help. Also, if I type ...
bkw's user avatar
  • 109
1 vote
1 answer
496 views

I want to animate the placeholder of my SearchBar Composable just like the Google Play Store searchbar placeholder. I tried to do it, but it does not seem to be as subtle as the Google Play Store. ...
Curious Head's user avatar
2 votes
1 answer
2k views

I have a scaffold with a Column app bar and a SearchBar composable from md3, the content of my scaffold is a Column with vertical scroll behavior: val appBarState = rememberTopAppBarState() val ...
Arena Booker's user avatar
0 votes
1 answer
544 views

I'm learning programming (web development), I started yesterday, I want to specifically center the "search button" next to the search bar, but for some reason it doesn't seem to work, may ...
user avatar
2 votes
1 answer
375 views

I am struggling to implement material components search in my android app following this tutorial I built a basic app with viewbinding, added implementation 'com.google.android.material:material:1.11....
Kalle's user avatar
  • 302
2 votes
1 answer
554 views

I'm building a searchbar using Flutter, Whenever the user searches something I need to do an API request to my backend to get the suggestions. When these suggestions are fetched I want to show them ...
Josian's user avatar
  • 21
0 votes
0 answers
140 views

I created my first public github repo with some open source, where I created a Search Bar with a search engine. I did it with the intention of saving people's time and helping them. I need your help ...
Aissa Rouk's user avatar
0 votes
0 answers
30 views

My current search bar looks like this (lower border does not appear). This is its current code: <SearchBar containerStyle={{ backgroundColor: "white", padding: 10, ...
dumbduck's user avatar
0 votes
1 answer
123 views

Is the Searchbar in google apps such as Gmail, Goole Maps an AppBar with integrated Searchbar or just a Searchbar put on top of the rest of the body? I'm trying to implement something like that with ...
DeKekem's user avatar
  • 1,835
1 vote
1 answer
210 views

I want to use material 3 searchbar in my kotlin app, I can't figure out how to put and get the text in searchbar, when I click on it, it behaves like a button (shows ripples) but can't put text in it &...
Dipanshu's user avatar
0 votes
1 answer
159 views

I an trying to implement a search query string for my searchbar. Following the Microsoft documentation: Adding search, it suggested using Html.BeginForm("action", "controller", ...
ZNAXNOR's user avatar
  • 136
1 vote
2 answers
1k views

I'm trying to resize the view of a SearchAnchor to its content. Let's say I have some basic code (taken from here): https://api.flutter.dev/flutter/material/SearchAnchor-class.html. I don't know how ...
JPFrancoia's user avatar
  • 5,759
0 votes
1 answer
58 views

I have some issues with my searchBar.jsx Upon typing a word into the SearchBar, the expected search results are displayed correctly. However, when I proceed to delete the entered text, the displayed ...
Conrad's user avatar
  • 51
0 votes
2 answers
318 views

I'm trying to show the card info of South Africa as default value (before typing any country's name into the search bar input field or chosing a specific country out of a given list) and the according ...
B C's user avatar
  • 1
0 votes
1 answer
2k views

I want to achieve something like this in my SwiftUI project: I am looking to add a custom button next to the search bar, but I am unable to find relevant information online. Is it possible to achieve ...
helloimbrando's user avatar
0 votes
1 answer
659 views

So I have a site that has a ton of buttons, but I want to make a search bar that after every letter, it compares the contents with the id or alt of each button, so basically if I type “he”, it will ...
Radical Randy's user avatar
1 vote
2 answers
1k views

I am trying to create a search bar in my app which includes a hint text in it. However my output of it looks weird where the hint text is not align to the center vertically on the SearchBar. The img ...
Leong's user avatar
  • 348
-1 votes
1 answer
35 views

App.tsx import React from 'react'; import { SafeAreaView, StatusBar, StyleSheet, TextInput, View, } from 'react-native'; import Main from './screens/Main'; function App(): JSX.Element { ...
MR. WOLF's user avatar
0 votes
1 answer
505 views

The API country data get loaded (see console.log() entry and the added picture of my working desk) but no country info is shown when dragging the mouse cursor into the search bar field (should show ...
B C's user avatar
  • 1
2 votes
2 answers
1k views

I'm using the SearchBar included in the Compose library with Material3: androidx.compose.material3.SearchBar. (Question 1) I'm trying to customize it a bit and I don't know how to set custom font for ...
SergiBC's user avatar
  • 533
1 vote
1 answer
966 views

I am using the Search bar and Search Anchor in my Flutter project which is newly introduced with material3. I am facing an error while moving back from the search view. It moves back to the previous ...
Priyanshu Paliwal's user avatar
0 votes
2 answers
1k views

I am having an issue with my searchBar which is included in the base.html.twig file with a template. It was working when I was only displaying products with the function findAll, but now I have my own ...
Paul Lecerf's user avatar
3 votes
2 answers
3k views

I want to make the list of suggestions appear below the SearchBar like in this example: I used the same code in the sample but the search box and the list goes fullscreen like this when the search ...
Tashila Pathum's user avatar
0 votes
1 answer
228 views

I'm using the package fuzzywuzzy from flutter and I don't know why but it says my result variable is null. Can you guys help me and explain why? I wanted the value of result I tried putting it in an ...
Roger Antony's user avatar
0 votes
1 answer
679 views

In 2020 when I first touch SwiftUI, it needs to rollback to UIKit for SearchBar because in that time SwiftUI doesn't support it well. I used below code to create searchbar in 2020 import SwiftUI ...
Zhou Haibo's user avatar
  • 2,168
-1 votes
1 answer
35 views

Here is my code, I cannot reach any result from the search bar. const RecentBlogs = ({recentBlogs}) => { const [query, setQuery] = useState("") const filteredItems = (() => { if(!...
Alissa Brave's user avatar
0 votes
1 answer
769 views

I'm creating a mobile app by using flutter framework. I want to add a search bar to my home page. Home page and Search bar files are separate than each other. Here is my home_screen.dart file import '...
basakcglyn's user avatar
-1 votes
1 answer
106 views

In an Android Flutter/Dart app, I have a SearchBar at the top of the screen. If the user clicks in the SearchBar, the keyboard shows. If the user then dismisses the keyboard (with the down arrow on ...
OnePingOnly's user avatar
0 votes
1 answer
356 views

import React, { useEffect, useState } from 'react' import axios from 'axios' function AutoCompleteInput() { const[data,setData] = useState([]) const [filtereddata,setfilteredData]=useState([]...
pooja thakur's user avatar
5 votes
0 answers
2k views

I implement this successfully After that I want to implement custom search bar with menu icon like this on TopAppBar and no suggest strings needed, but this custom search bar not created by me ...
Sajjad Hussain Bhutta's user avatar

1
2 3 4 5
21