Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
ui(Various): Use TextField without border
Browse files Browse the repository at this point in the history
  • Loading branch information
iakdis committed Mar 31, 2023
1 parent 611cb55 commit 9ad872c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions lib/src/pages/create_website.dart
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,7 @@ class _CreateWebsiteState extends State<CreateWebsite> {
? Localization.appLocalizations().cantBeEmpty
: null,
errorMaxLines: 5,
border: const OutlineInputBorder(),
labelText: Localization.appLocalizations().websitePath,
isDense: true,
hintText: Platform.isWindows
? 'C:\\Documents\\Websites'
: Platform.isMacOS
Expand Down Expand Up @@ -459,9 +457,7 @@ class _CreateWebsiteState extends State<CreateWebsite> {
'"$sitePath${Platform.pathSeparator}$siteName"')
: null,
errorMaxLines: 5,
border: const OutlineInputBorder(),
labelText: Localization.appLocalizations().siteName,
isDense: true,
hintText: 'my-website',
hintStyle: TextStyle(
color: Colors.grey[500],
Expand Down
2 changes: 0 additions & 2 deletions lib/src/pages/open_website.dart
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,7 @@ class _OpenWebsiteState extends State<OpenWebsite> {
errorText: sitePathError
? Localization.appLocalizations().cantBeEmpty
: null,
border: const OutlineInputBorder(),
labelText: Localization.appLocalizations().websitePath,
isDense: true,
hintText: Platform.isWindows
? 'C:\\Documents\\Projects\\my-website'
: Platform.isMacOS
Expand Down
2 changes: 0 additions & 2 deletions lib/src/pages/theme_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,8 @@ class _ThemePageState extends State<ThemePage> {
? Localization.appLocalizations()
.repositoryInvalidURL
: null,
border: const OutlineInputBorder(),
labelText:
Localization.appLocalizations().themeRepository,
isDense: true,
hintText: 'https://github.com/user/hugo-theme',
hintStyle: TextStyle(
color: Colors.grey[500],
Expand Down
1 change: 0 additions & 1 deletion lib/src/ssg/add_frontmatter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ class _AddFrontmatterButtonState extends State<AddFrontmatterButton> {
autofocus: true,
decoration: InputDecoration(
labelText: Localization.appLocalizations().search,
border: const OutlineInputBorder(),
),
),
itemBuilder: (context, item, isSelected) {
Expand Down

0 comments on commit 9ad872c

Please sign in to comment.