Flutter connecting to a database in server

前端 未结 2 1763
悲&欢浪女
悲&欢浪女 2020-12-20 00:15

I\'m new to flutter and i really want to know, is there a way to connect to a database server (for instance mysql) in flutter rather using firebase. I\'m working on a smart

2条回答
  •  甜味超标
    2020-12-20 01:01

    Try using sqflite. It's a package you can include in your Flutter app that allows you to persist data to the local device. You will need to use the path_provider as well. Here is the link to the repository on Github https://github.com/tekartik/sqflite

提交回复
热议问题