|
|
|
@ -77,9 +77,9 @@ Future<Database> constructDb(
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DynamicLibrary _openOnWindows() {
|
|
|
|
|
final exe_path = File(
|
|
|
|
|
Platform.resolvedExecutable.replaceAll(RegExp(r'fluffychat.exe'), ''));
|
|
|
|
|
final libraryNextToScript = File('${exe_path.path}/sqlite3.dll');
|
|
|
|
|
final exePath =
|
|
|
|
|
File(Platform.resolvedExecutable.replaceAll('fluffychat.exe', ''));
|
|
|
|
|
final libraryNextToScript = File('${exePath.path}/sqlite3.dll');
|
|
|
|
|
return DynamicLibrary.open(libraryNextToScript.path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|