Make Button::background generic
This commit is contained in:
parent
f87ddf1056
commit
e92ea48e88
7 changed files with 21 additions and 20 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use iced::{
|
||||
button, image, Align, Application, Button, Color, Column,
|
||||
Command, Container, Element, Image, Length, Row, Settings, Text,
|
||||
button, image, Align, Application, Button, Color, Column, Command,
|
||||
Container, Element, Image, Length, Row, Settings, Text,
|
||||
};
|
||||
|
||||
pub fn main() {
|
||||
|
|
@ -225,7 +225,7 @@ impl From<reqwest::Error> for Error {
|
|||
|
||||
fn button<'a>(state: &'a mut button::State, text: &str) -> Button<'a, Message> {
|
||||
Button::new(state, Text::new(text).color(Color::WHITE))
|
||||
.background(Color::from_rgb(0.11, 0.42, 0.87).into())
|
||||
.background(Color::from_rgb(0.11, 0.42, 0.87))
|
||||
.border_radius(10)
|
||||
.padding(10)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use iced::{
|
||||
button, scrollable, text_input, Align, Application, Button,
|
||||
Checkbox, Color, Column, Command, Container, Element, Font,
|
||||
HorizontalAlignment, Length, Row, Scrollable, Settings, Text, TextInput,
|
||||
button, scrollable, text_input, Align, Application, Button, Checkbox,
|
||||
Color, Column, Command, Container, Element, Font, HorizontalAlignment,
|
||||
Length, Row, Scrollable, Settings, Text, TextInput,
|
||||
};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
|
|
@ -332,7 +332,7 @@ impl Task {
|
|||
.on_press(TaskMessage::Delete)
|
||||
.padding(10)
|
||||
.border_radius(5)
|
||||
.background(Color::from_rgb(0.8, 0.2, 0.2).into()),
|
||||
.background(Color::from_rgb(0.8, 0.2, 0.2)),
|
||||
)
|
||||
.into()
|
||||
}
|
||||
|
|
@ -361,7 +361,7 @@ impl Controls {
|
|||
let label = Text::new(label).size(16).width(Length::Shrink);
|
||||
let button = if filter == current_filter {
|
||||
Button::new(state, label.color(Color::WHITE))
|
||||
.background(Color::from_rgb(0.2, 0.2, 0.7).into())
|
||||
.background(Color::from_rgb(0.2, 0.2, 0.7))
|
||||
} else {
|
||||
Button::new(state, label)
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use iced::{
|
||||
button, scrollable, slider, text_input, Button, Checkbox,
|
||||
Color, Column, Container, Element, HorizontalAlignment, Image, Length,
|
||||
Radio, Row, Sandbox, Scrollable, Settings, Slider, Text, TextInput,
|
||||
button, scrollable, slider, text_input, Button, Checkbox, Color, Column,
|
||||
Container, Element, HorizontalAlignment, Image, Length, Radio, Row,
|
||||
Sandbox, Scrollable, Settings, Slider, Text, TextInput,
|
||||
};
|
||||
|
||||
pub fn main() {
|
||||
|
|
@ -684,17 +684,14 @@ fn primary_button<'a, Message>(
|
|||
state: &'a mut button::State,
|
||||
label: &str,
|
||||
) -> Button<'a, Message> {
|
||||
button(state, label)
|
||||
.background(Color::from_rgb(0.11, 0.42, 0.87).into())
|
||||
button(state, label).background(Color::from_rgb(0.11, 0.42, 0.87))
|
||||
}
|
||||
|
||||
fn secondary_button<'a, Message>(
|
||||
state: &'a mut button::State,
|
||||
label: &str,
|
||||
) -> Button<'a, Message> {
|
||||
button(state, label)
|
||||
.background(Color::from_rgb(0.4, 0.4, 0.4).into())
|
||||
|
||||
button(state, label).background(Color::from_rgb(0.4, 0.4, 0.4))
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue