{"id":16401730,"url":"https://github.com/dev-hwang/outline_search_bar","last_synced_at":"2025-07-21T11:32:13.819Z","repository":{"id":45393736,"uuid":"330564546","full_name":"Dev-hwang/outline_search_bar","owner":"Dev-hwang","description":"This package allows you to create an outlined Material design search bar.","archived":false,"fork":false,"pushed_at":"2023-08-02T23:51:30.000Z","size":55,"stargazers_count":7,"open_issues_count":0,"forks_count":7,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-27T09:55:36.353Z","etag":null,"topics":["android","flutter","ios","search-bar","web"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dev-hwang.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-18T05:34:18.000Z","updated_at":"2024-08-03T18:02:18.000Z","dependencies_parsed_at":"2025-02-11T20:43:45.462Z","dependency_job_id":null,"html_url":"https://github.com/Dev-hwang/outline_search_bar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Dev-hwang/outline_search_bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-hwang%2Foutline_search_bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-hwang%2Foutline_search_bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-hwang%2Foutline_search_bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-hwang%2Foutline_search_bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dev-hwang","download_url":"https://codeload.github.com/Dev-hwang/outline_search_bar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dev-hwang%2Foutline_search_bar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266291680,"owners_count":23906312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","flutter","ios","search-bar","web"],"created_at":"2024-10-11T05:44:01.014Z","updated_at":"2025-07-21T11:32:13.802Z","avatar_url":"https://github.com/Dev-hwang.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"This package allows you to create an outlined Material design search bar.\n\n[![pub package](https://img.shields.io/pub/v/outline_search_bar.svg)](https://pub.dev/packages/outline_search_bar)\n\n## Screenshots\n\u003cimg src=\"https://user-images.githubusercontent.com/47127353/105262760-902c9500-5bd3-11eb-9f24-88bbf48d4845.png\"\u003e\n\n## Getting started\n\nTo use this package, add `outline_search_bar` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). For example:\n\n```yaml\ndependencies:\n  outline_search_bar: ^2.3.0\n```\n\n## OutlineSearchBar\n\n| Parameter | Description |\n|---|---|\n| `textEditingController` | The keyword of `OutlineSearchBar` can be controlled with a `TextEditingController`. |\n| `keyboardType` | Set keyboard type. \u003cbr\u003e Default value is `TextInputType.text`. |\n| `textInputAction` | Set keyboard action. \u003cbr\u003e Default value is `TextInputAction.search`. |\n| `maxHeight` | Set the maximum height of `OutlineSearchBar`. |\n| `icon` | Set the icon of `OutlineSearchBar`. |\n| `backgroundColor` | Set the color of `OutlineSearchBar`. \u003cbr\u003e Default value is `Theme.of(context).scaffoldBackgroundColor`. |\n| `borderColor` | Set the border color of `OutlineSearchBar`. If value is null and theme brightness is light, use primaryColor, if dark, use accentColor. |\n| `borderWidth` | Set the border thickness of `OutlineSearchBar`. \u003cbr\u003e Default value is `1.0`. |\n| `borderRadius` | Set the border radius of `OutlineSearchBar`. \u003cbr\u003e Default value is `const BorderRadius.all(const Radius.circular(4.0))`. |\n| `margin` | Set the margin value of `OutlineSearchBar`. \u003cbr\u003e Default value is `const EdgeInsets.only()`. |\n| `padding` | Set the padding value of `OutlineSearchBar`. \u003cbr\u003e Default value is `const EdgeInsets.symmetric(horizontal: 5.0)`. |\n| `textPadding` | Set the text padding value of `OutlineSearchBar`. \u003cbr\u003e Default value is `const EdgeInsets.symmetric(horizontal: 5.0)`. |\n| `elevation` | Set the elevation of `OutlineSearchBar`. \u003cbr\u003e Default value is `0.0`. |\n| `initText` | Set the keyword to be initially entered. If initial text is set in `textEditingController`, this value is ignored. |\n| `hintText` | Set the text to be displayed when the keyword is empty. |\n| `textStyle` | Set the input text style. |\n| `hintStyle` | Set the style of `hintText`. |\n| `maxLength` | Set the maximum length of text to be entered. |\n| `cursorColor` | Set the color of cursor. |\n| `cursorWidth` | Set the width of cursor. \u003cbr\u003e Default value is `2.0`. |\n| `cursorHeight` | Set the height of cursor. |\n| `cursorRadius` | Set the radius of cursor. |\n| `clearButtonColor` | Set the background color of the clear button. \u003cbr\u003e Default value is `const Color(0xFFDDDDDD)`. |\n| `clearButtonIconColor` | Set the icon color inside the clear button. \u003cbr\u003e Default value is `const Color(0xFFFEFEFE)`. |\n| `searchButtonSplashColor` | Set the splash color that appears when the search button is pressed. |\n| `searchButtonIconColor` | Set the icon color inside the search button. If value is null and theme brightness is light, use primaryColor, if dark, use accentColor. |\n| `searchButtonPosition` | Set the position of the search button. Default value is `SearchButtonPosition.trailing`. |\n| `debounceDelay` | The delay between when the user stops typing a keyword and receives the onTypingFinished event. \u003cbr\u003e Default value is `500`. |\n| `autoCorrect` | Whether to use autoCorrect option. \u003cbr\u003e Default value is `false`. |\n| `enableSuggestions` | Whether to use enableSuggestions option. \u003cbr\u003e Default value is `true`. |\n| `hideSearchButton` | Whether to hide the search button. \u003cbr\u003e Default value is `false`. |\n| `ignoreWhiteSpace` | Whether to ignore input of white space. \u003cbr\u003e Default value is `false`. |\n| `ignoreSpecialChar` | Whether to ignore input of special characters. \u003cbr\u003e Default value is `false`. |\n| `onTap` | Called when `OutlineSearchBar` is tapped. |\n| `onKeywordChanged` | Called whenever a keyword is changed. |\n| `onTypingFinished` | Called when keyword typing is finished. |\n| `onClearButtonPressed` | When the clear button is pressed, it is called with the previous keyword. |\n| `onSearchButtonPressed` | When the search button is pressed, it is called with the entered keyword. |\n\n## Support\n\nIf you find any bugs or issues while using the plugin, please register an issues on [GitHub](https://github.com/Dev-hwang/outline_search_bar/issues). You can also contact us at \u003chwj930513@naver.com\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-hwang%2Foutline_search_bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-hwang%2Foutline_search_bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-hwang%2Foutline_search_bar/lists"}