revert Font update
This commit is contained in:
2026-08-01 01:22:26 +03:00
parent cf0c371a19
commit 12e4589a61
12 changed files with 65 additions and 72 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
use crate::dictionary::{split_with_coma};
use crate::quiz::Score;
use crate::Page::PreviousPage;
use crate::{jl_text_input, RootMessage, DEFAULT_SPACING};
use crate::{RootMessage, DEFAULT_SPACING};
use crate::{NavigatedPage, Page};
use iced::border::Radius;
use iced::widget::container::Style;
use iced::widget::{button, container, row, space, text, Row};
use iced::widget::{button, container, row, space, text, text_input, Row};
use iced::Background::Color;
use iced::{alignment, Border, Element, Fill, Task, Theme};
use rand::prelude::SliceRandom;
@@ -88,7 +88,7 @@ impl DictionaryQuizState {
]
.align_x(alignment::Horizontal::Center)
.spacing(5),
jl_text_input("Перевод", &self.answer)
text_input("Перевод", &self.answer)
.size(28)
.width(250)
.on_input(DictionaryQuizMessage::AnswerChanged)