chore: add hint text to text fields in course edit page (#4022)
This commit is contained in:
parent
1a307285f0
commit
edc29dbf61
2 changed files with 5 additions and 1 deletions
|
|
@ -5247,5 +5247,7 @@
|
|||
"subscribeToUnlockActivitySummaries": "Subscribe to unlock activity summaries",
|
||||
"subscribeToUnlockDefinitions": "Subscribe to unlock definitions",
|
||||
"subscribeToUnlockTranscriptions": "Subscribe to unlock transcriptions",
|
||||
"pingSent": "🔔 Course ping sent! 🔔"
|
||||
"pingSent": "🔔 Course ping sent! 🔔",
|
||||
"courseTitle": "Course title",
|
||||
"courseDesc": "Course description"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -181,6 +181,7 @@ class EditCourseController extends State<EditCourse> {
|
|||
borderRadius:
|
||||
BorderRadius.circular(4.0),
|
||||
),
|
||||
hintText: L10n.of(context).courseTitle,
|
||||
),
|
||||
),
|
||||
TextField(
|
||||
|
|
@ -190,6 +191,7 @@ class EditCourseController extends State<EditCourse> {
|
|||
borderRadius:
|
||||
BorderRadius.circular(4.0),
|
||||
),
|
||||
hintText: L10n.of(context).courseDesc,
|
||||
),
|
||||
maxLines: null,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue