I'm trying to figure out what database to use for my application.
Based on a word a user types, it needs to go through 4 million newline delimited lines of text, and pick one that matches the word.
I want all this text to be stored locally on the user's device too.
But what I've heard is I need access to the pubspec.yaml file to setup dependencies like sqflite and path_provider in order to use a database like sqlite?
Is this correct or is there an easier way to go about configuring a database?