A Turkish-English dictionary app built with flutter
Read Time:36 Second

A Turkish-English dictionary app built with flutter

0 0

Dictionary App by Flutter

About The Project

A Turkish-English dictionary app built with flutter

I have made a Turkish-English dictionary app in this project. I can receive dictionaries from the database thanks to sqlite. And You can search words in this application. I also did this thanks to sqlite.

With the following sql query,I can search the words from database

 Future<List<Words>> searchWord(String searchWord) async {
    var db = await DatabaseHelper.databaseAccess();

    List<Map<String,dynamic>> maps = await db.rawQuery("SELECT * FROM kelimeler WHERE ingilizce like '%$searchWord%' or turkce like '%$searchWord%'");

    return List.generate(maps.length, (index) {
      var row = maps[index];
      return Words(row["kelime_id"], row["ingilizce"], row["turkce"]);
    });

A Turkish-English dictionary app built with flutter
A Turkish-English dictionary app built with flutter
A Turkish-English dictionary app built with flutter

GitHub

View Github

Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Deja una respuesta

Entrada anterior Simple flutter webapp to learn how basic sorting algorithms work with visualization
Entrada siguiente A Crypto-currency tracker app made by using Flutter