mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
Removes the need to copy-paste stanzas from other files anymore as we'll rely on #4478 to generate the correct stanza for us instead. This was an automated change generated by running a find-and-replace regular expression: ``` /\* Copyright ([0-9]+)-present the Material Components for iOS authors\. All Rights Reserved\. Licensed under the Apache License, Version 2\.0 \(the "License"\); you may not use this file except in compliance with the License\. You may obtain a copy of the License at http://www\.apache\.org/licenses/LICENSE-2\.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\. See the License for the specific language governing permissions and limitations under the License\. \*/ ``` ``` /\* Copyright ([0-9]+)-present the Material Components for iOS authors\. All Rights Reserved\. Licensed under the Apache License, Version 2\.0 \(the "License"\); you may not use this file except in compliance with the License\. You may obtain a copy of the License at http://www\.apache\.org/licenses/LICENSE-2\.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\. See the License for the specific language governing permissions and limitations under the License\. \*/ ``` ``` /\* Copyright ([0-9]+)-present the Material Components for iOS authors\. All Rights Reserved\. Licensed under the Apache License, Version 2\.0 \(the "License"\); you may not use this file except in compliance with the License\. You may obtain a copy of the License at http://www\.apache\.org/licenses/LICENSE-2\.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\. See the License for the specific language governing permissions and limitations under the License\. \*/ ``` ``` // Copyright $1-present the Material Components for iOS authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. ```
120 lines
3.7 KiB
Swift
120 lines
3.7 KiB
Swift
// Copyright 2018-present the Material Components for iOS authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import Foundation
|
|
import MaterialComponents.MaterialBottomSheet
|
|
import MaterialComponents.MaterialButtons
|
|
import MaterialComponents.MaterialButtons_ButtonThemer
|
|
|
|
class BottomSheetTableViewExample: UIViewController {
|
|
var colorScheme = MDCSemanticColorScheme()
|
|
var typographyScheme = MDCTypographyScheme()
|
|
|
|
init() {
|
|
super.init(nibName: nil, bundle: nil)
|
|
|
|
self.title = "Table View Menu"
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
view.backgroundColor = colorScheme.backgroundColor
|
|
|
|
let button = MDCButton()
|
|
button.setTitle("Show bottom sheet", for: .normal)
|
|
button.addTarget(self,
|
|
action: #selector(BottomSheetTableViewExample.didTapFloatingButton),
|
|
for: .touchUpInside)
|
|
|
|
let buttonScheme = MDCButtonScheme()
|
|
buttonScheme.colorScheme = colorScheme
|
|
buttonScheme.typographyScheme = typographyScheme
|
|
MDCContainedButtonThemer.applyScheme(buttonScheme, to: button)
|
|
|
|
button.sizeToFit()
|
|
button.center = CGPoint(x: view.bounds.midX, y: view.bounds.midY)
|
|
button.autoresizingMask = [
|
|
.flexibleLeftMargin,
|
|
.flexibleTopMargin,
|
|
.flexibleRightMargin,
|
|
.flexibleBottomMargin
|
|
]
|
|
|
|
view.addSubview(button)
|
|
}
|
|
|
|
@objc func didTapFloatingButton(_ sender : MDCFloatingButton) {
|
|
let menu = BottomSheetTableViewMenu(style: .plain)
|
|
let bottomSheet = MDCBottomSheetController(contentViewController: menu)
|
|
bottomSheet.isScrimAccessibilityElement = true
|
|
bottomSheet.scrimAccessibilityLabel = "Close"
|
|
bottomSheet.trackingScrollView = menu.tableView
|
|
present(bottomSheet, animated: true)
|
|
}
|
|
}
|
|
|
|
private class BottomSheetTableViewMenu: UITableViewController {
|
|
|
|
let tableData = [
|
|
"Action 1",
|
|
"Action 2",
|
|
"Action 3"
|
|
]
|
|
let cellIdentifier = "MenuCell"
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellIdentifier)
|
|
self.tableView.separatorStyle = .none
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView,
|
|
cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
|
|
let cellData = tableData[indexPath.item]
|
|
cell.textLabel?.text = cellData
|
|
return cell
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
return tableData.count
|
|
}
|
|
|
|
override func numberOfSections(in tableView: UITableView) -> Int {
|
|
return 1
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
|
tableView.deselectRow(at: indexPath, animated: true)
|
|
self.dismiss(animated: true, completion: nil)
|
|
}
|
|
}
|
|
|
|
// MARK: Catalog by convention
|
|
extension BottomSheetTableViewExample {
|
|
|
|
class func catalogMetadata() -> [String: Any] {
|
|
return [
|
|
"breadcrumbs": ["Bottom Sheet", "Table View Menu"],
|
|
"primaryDemo": false,
|
|
"presentable": true,
|
|
]
|
|
}
|
|
}
|