Skip to content

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

License

Notifications You must be signed in to change notification settings

Neargye/SwipeType

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 23, 2024
36f8f69 · Jan 23, 2024

History

52 Commits
Jan 23, 2024
Jan 23, 2024
Jan 23, 2024
Jan 23, 2024
May 20, 2019
Apr 18, 2018
May 21, 2018
Jan 23, 2024
Jan 23, 2024

Repository files navigation

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

Example

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages