dbpath 0.0.1 copy "dbpath: ^0.0.1" to clipboard
dbpath: ^0.0.1 copied to clipboard

PlatformAndroid

get database path

dbpath #

get database path getDataBasePath()

Getting Started #

this package has only one function getDataBasePath() to get database path for android as path_provider doesn't have it for ios there is not database path you should use getApplicationDocumentsDirectory() from path_provider

somethinge like this

Future<String> getDBPath() async => Platform.isAndroid
    ? (await getDataBasePath())!
    : (await getApplicationDocumentsDirectory()).path;
1
likes
140
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

get database path

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dbpath