IGListKit/Examples/Examples-iOS/IGListKitExamples/Views/SearchCell.swift
Tim Oliver 3752371dac Refine Demo Apps for iOS 26 (#1655)
Summary:
## Changes in this pull request

I went through and improved some of the demo apps UI to look a bit cleaner on iOS 26.

### Checklist

- [x] All tests pass. Demo project builds and runs.
- [x] I added tests, an experiment, or detailed why my change isn't tested.
- [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/main/.github/CONTRIBUTING.md)

Pull Request resolved: https://github.com/instagram/IGListKit/pull/1655

Reviewed By: jurmarcus

Differential Revision: D93350298

Pulled By: TimOliver

fbshipit-source-id: 2a8c5ddbca313e9a5ccca7f8b06f04c6bc44649b
2026-02-16 23:57:23 -08:00

26 lines
609 B
Swift

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import UIKit
final class SearchCell: UICollectionViewCell {
lazy var searchBar: UISearchBar = {
let view = UISearchBar()
if #available(iOS 26.0, *) {
view.searchBarStyle = .minimal
}
self.contentView.addSubview(view)
return view
}()
override func layoutSubviews() {
super.layoutSubviews()
searchBar.frame = contentView.bounds
}
}