What is Algolia
Algolia empowers modern developers to build world class search and discovery experiences without any DevOps.
Libraries with every major language and framework make it easy to enrich your users' experiences.
Algolia empowers modern developers to build world class search and discovery experiences without any DevOps.
Libraries with every major language and framework make it easy to enrich your users' experiences.
iOS InstantSearch UI library is
Search (get a free account here)
1struct ContentView: View { 2 3 @ObservedObject var queryInputController: QueryInputObservableController 4 @ObservedObject var hitsController: HitsObservableController<StockItem> 5 6 @State private var isEditing = false 7 8 var body: some View { 9 VStack(spacing: 7) { 10 SearchBar(text: $queryInputController.query, 11 isEditing: $isEditing, 12 onSubmit: queryInputController.submit) 13 HitsList(hitsController) { hit, _ in 14 VStack(alignment: .leading, spacing: 10) { 15 Text(hit?.name ?? "") 16 .padding(.all, 10) 17 Divider() 18 } 19 } 20 } 21 } 22}
This app lets you scan a shipping label with your phone and sends a Slack message to the recipient of the package
Typeahead dropdown playground built with the Algolia Autocomplete library