Skip to content

Releases: insolite-dev/field_suggestion

v0.2.5 - 22/02/2023

22 Feb 17:58
8adf9e6
Compare
Choose a tag to compare

Updates:

  • Resolved: #52
  • Added network constructor type for the FieldSuggestion widget, it's now able to use like [FutureBuilder]. -> FieldSuggestion.network.

v0.2.4 - 16/06/2022

16 Jun 18:52
bafef40
Compare
Choose a tag to compare

Updates:

Resolved: #49

  • Added generic typing support to FieldSuggestion widget.
  • Updated highlightable to version -> v1.0.5

v0.2.3 - (14/03/2022)

15 Mar 15:09
54d2f9d
Compare
Choose a tag to compare

Updates:

Resolved: #33 and #44

  • Refactored and Redesigned whole widget structure,
    by that rendering speed was improved by almost 5x.
  • Made require the [search] field, to provide high customization and algorithm-agnostic usage.
    As default search could be normal -> item.toString().contains(input)
  • Rewritten the whole documentation of field suggestion.

The new widget structure:

 ╭───────╮      ╭─────────────╮                                                  
 │ Input │╮    ╭│ Suggestions │                                                  
 ╰───────╯│    │╰─────────────╯                                                  
          │    │               Generated by                                      
          │  Element         search algorithm                                    
          │    │              ╭──────────╮                                       
          ▼    ▼          ╭──▶│ Matchers │─╮                                     
    ╭──────────────────╮  │   ╰──────────╯ │  ╭──────────────╮                   
    │ Search Algorithm │──╯                ╰─▶│ Item Builder │                   
    ╰──────────────────╯                      ╰──────────────╯                   
     Passes input and suggestion's             ... Passes context and            
     element to search function.               index of "matcher in suggestions".
     So, as a result matchers                  suggestion item widget.           
     fill be filled appropriate                                                  
     to algorithm                                                                

v0.2.2

14 Oct 16:31
500b94b
Compare
Choose a tag to compare

[v0.2.2] - 14/10/2021

News:

Field Suggesion's Logo

Clear code & faster field suggestion.


v0.2.1

04 Oct 21:09
Compare
Choose a tag to compare

[v0.2.1] - 04/10/2021

News:

v0.2.0

17 Aug 11:12
Compare
Choose a tag to compare

[v0.2.0] - 17/08/2021

News:

Overview:

Example From Medium Article

v0.1.9

27 Jul 19:02
Compare
Choose a tag to compare

[v0.1.9] - 27/07/2021

News:

  • Resolved: #29

Features/Bug-fixes:

  • Added refresh functionality to BoxController
  • Fixed closeBoxAfterCompleting problem
  • Added functionality, which automatically moves indicator to text's right position when suggestion item is selected

Example of the main issue-resolving:
Need a boxController first of all. Create it and give it to the suggestion field. Then just call boxController.refresh!() when you want to update your FieldSuggestion widget.

Overview:

v0.1.8

26 Jul 14:00
Compare
Choose a tag to compare

[v0.1.8] - 21/07/21

News:

  • Resolved: #26

Features:

  • Added builder factory (i.e FielsSuggestion.builder)
    By using builder users can make custom suggestion items. So that improves the package's UI/UX.
    Now it has more ability to customize as we wish. So that means

Overview:

v0.1.7

05 Jul 19:22
Compare
Choose a tag to compare

[v0.1.7] - 5/07/21

News:

Features:

  • onItemSelected property added
  • subtitle added for suggestion item.
  • searchBy converted to list so that means users are able to give multiple properties to search. See more.

v0.1.6

19 Jun 12:14
Compare
Choose a tag to compare

[v0.1.6] - 19/06/21

News:

  • Logo was redesigned. New logo: 🎉

Field Suggesion's Logo

  • Resolved: #20
    Now users are able to customize suggestion item much more than v0.1.5
    See the readme to get more info.