- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我找不到将自定义图标添加到 ionic 2/3 actionSheet 的方法。
presentActionSheet() {
let actionSheet = this.actionSheetCtrl.create({
title: 'Mode',
buttons: [
{
text: 'Add to Y' ,
role: 'destructive',
icon:"my_icon",
cssClass:"yoy",
handler: () => {
console.log('Destructive clicked');
}
},
{
text: 'Cancel',
role: 'cancel',
handler: () => {
console.log('Cancel clicked');
}
}
],
});
actionSheet.present();
}
如何将自己的自定义图标添加到操作表按钮?
最佳答案
ionic doc似乎没有提出任何 native 方法来执行此操作。但是,有一种方法可以使用自定义类来实现它。
let actionSheet = this.actionSheetCtrl.create({
title: 'Mode',
buttons: [
{
text: 'Add to Y',
// vvvvv set a custom class that will be used to display the icon
cssClass: "class_used_to_set_icon",
handler: () => {
console.log('Add to Y clicked');
}
}
],
});
actionSheet.present();
然后在你的 src/app/app.scss 中定义下面的类:
.class_used_to_set_icon {
// I'd suggest to have the icon in src/assets (eg ../assets/icon/favicon.ico)
background-image: url("path/to/your/icon") !important;
// to properly position the icon:
background-repeat: no-repeat !important;
background-position: 10px 10px !important;
// to indent the text to the right of the icon:
padding-left: 70px !important;
}
编辑
另一种使用来自 icomoon 等字体的自定义图标的方法:
let actionSheet = this.actionSheetCtrl.create({
title: 'Mode',
buttons: [
{
text: 'Add to Y',
// vvvvv set the custom icon class and a custom class to then improve display
cssClass: "icon-drink actionSheet_withIcomoon",
handler: () => {
console.log('Add to Y clicked');
}
}
],
});
actionSheet.present();
然后在你的 src/app/app.scss 中定义下面的类:
// display the icon at the right size
.actionSheet_withIcomoon { font-size: 2.4rem !important; }
// correct the font dimensions and positioning of the text
.actionSheet_withIcomoon .button-inner {
font-family: "Roboto", "Helvetica Neue", sans-serif;
font-weight: bold;
padding-left: 52px;
margin-top: -20px;
font-size: 1.6rem !important;
}
关于javascript - 将我的自定义图标添加到 ionic 2 actionSheet 的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43551463/
我需要在 ActionSheet 中生成按钮的动态列表.假设我有一系列选项 ["Option1", "Option2"] ,我怎样才能做到这一点? .actionSheet(isPresented:
我有以下示例代码: import SwiftUI struct ContentView: View { var body: some View { NavigationView
如何导航出ActionSheet在那里我只能通过 Text但不是 NavigationLink ? 示例代码: struct DemoActionSheetNavi: View { @Stat
针对这三个语句获取三个警告消息 ActionSheet.actionSheetStyle = UIActionSheetStyleBlackOpaque; [ActionSheet showInVie
我有一个方法可以抛出一个由数组填充的 actionSheet。 问题是,一旦我将该方法放入 1 个按钮的发送器中,每次 按钮按下时它都会触发。 我只希望它显示一个按钮 (btnPortfolio)。
我正在使用 Action Sheet Picket .我按照自述文件、选择器中的说明添加了 .h 和 .m 文件,甚至 cancelAction 运行良好,但不知何故 successAction 抛出
我有一个棋盘游戏,我正在使用操作表来撤消移动。我能够撤消移动并将该片段从当前位置动画化到之前的位置。 但由于空间较小,我使用操作表供用户选择撤消选项。 但问题是当用户选择撤消时,动画会在操作表消失之前
我有 ActionSheet 的代码,它可以连接的东西有点慢? @IBAction func showAction(_ sender: UIButton) { let actionSheetC
我有这段代码可以从 NSMutableArray 的 NSDictionary 获取 NSStrings,但问题是它显示不正确。这是代码: UIActionSheet *playingSheet =
我正在尝试获取我的数组 sizes(可以有不同的值)。我正在尝试遍历数组并在 ActionSheet 中创建一个 .default 按钮。 代码如下: var sizes = ["S", "M", "
当在 View 中的任何点显示 actionSheet 时,它会显示一个方向向下的箭头(在 actionsheet 下方),即使 actionSheet 在 View 中有足够的空间来显示“向上”箭头
我正在尝试获取我的数组 sizes(可以有不同的值)。我正在尝试遍历数组并在 ActionSheet 中创建一个 .default 按钮。 代码如下: var sizes = ["S", "M", "
自 iOS 13 以来,我的带有 actionSheet 样式的警报显示为“延迟”标题和消息。 这些是 Apple 的 release notes . 我已经研究了很多,但找不到如何让它像 iOS 1
我的问题是我有一个 ActionSheet,仅当此按钮下的操作完成时,它才会从屏幕上消失。我的问题是我想在我的操作表中单击“保存”,然后关闭操作表,然后显示一些警报,通知用户等待保存完成。目前它的工作
我希望有人可以帮助我...我想在我正在开发的 iPad 应用程序中使用弹出窗口(或显示为弹出窗口的操作表)。 我遇到的问题是让它们看起来像我想要的那样。我希望我的弹出窗口看起来像许多核心应用程序中使用
我是 iOS 开发的新手,遇到了一个我似乎无法找到解决方案的错误。我到处寻找解决方案,但也许是我的新奇阻碍了我看到问题。 日志中打印的确切警告是: 在演示或关闭正在进行时尝试从 View Contro
我目前尝试使用 2 个操作表(或可能更多)并希望对它们进行不同的操作。 @IBAction func BTActionSheet(sender: AnyObject) { let a
我想将图像放在 ActionSheet 的右侧,就像在 AppStore 上看到的那样。我知道如何添加图像并更改 titleText 样式,但我无法弄清楚如何更改这两者的位置。 第三方库不受欢迎。 屏
我在我的 iOS 应用程序中使用 UIAlertController;但是,为了节省重复的代码行,我想在 if/else 分支之前初始化 UIAlertController。即 var alertCo
我希望其中一个选项在单击时不执行任何操作。它基本上是一个占位符。它没有标题,只有白色。 func actionSheet(sheet: UIActionSheet, clickedButtonAtIn
我是一名优秀的程序员,十分优秀!