Skip to content
Voice Search preview
Rendered from the SwiftUI source on this page.

Voice Search

From syxUI — written for both platforms, not translated between them.

A search bar with a mic.

Inputs · SwiftUI · iOS 17

  • inputs
  • swiftui

The actual source

SearchBarVoice.swift
// Voice Search · syxUI · https://syxui.dev/components/search-voice
// Free in any project. Keep this line and credit syxUI where a person can read it.

import SwiftUI

let seBlue = Color(red: 0.0, green: 0.47, blue: 1.0)

struct SearchBarVoice: View {
    var body: some View {
        HStack(spacing: 8) { Image(systemName: "magnifyingglass").font(.system(size: 15)).foregroundStyle(.secondary); Text("Search or ask").font(.system(size: 16)).foregroundStyle(.secondary); Spacer(); Image(systemName: "mic.fill").font(.system(size: 15)).foregroundStyle(seBlue) }.padding(.horizontal, 12).padding(.vertical, 11).background(Color.primary.opacity(0.06), in: Capsule()).frame(width: 320)
    }
}
iOS 17 · No dependencies

Dependencies

SwiftUI
No external dependencies

Requires iOS 17