Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/neargye/swipetype

Implementing same algorithm "swype keyboard" for .NET and Unity
https://github.com/neargye/swipetype

algorithm csharp keyboard swipetype swype-keyboard unity unity3d

Last synced: 3 months ago
JSON representation

Implementing same algorithm "swype keyboard" for .NET and Unity

Awesome Lists containing this project

README

        

# SwipeType - Implementing same algorithm "swype keyboard" for .NET and Unity

## Example

```cs
var swype = new MatchSwipeType(File.ReadAllLines("wordlist.txt")); // File with a list of words
string testCases = "heqerqllo";

foreach (var x in swype.GetSuggestion(testCases, 2))
{
Console.WriteLine(x);
//Output:
//hello
//hero
}
```

## Licensed under the [Apache-2.0 License](LICENSE)