Resto Finder

Restofinder 是一个简单的应用程序,它显示了距离我们位置最近的餐厅列表,以及各种特定的类型和提供的菜单。该项目使用 Zoomato API 搜索餐厅,因此我们首先需要创建 Zoomato apikey。

estofinder

应用特色

  • 获取附近餐厅

  • 获取合集

  • 按合集获取餐厅

  • 餐厅详情

  • 搜索餐厅

  • 地理编码和 GPS 系统

    设置

    1. 您必须在 Zoomato Developer 网站上创建 Zoomato Key API
    2. 将创建的 Api Key 输入到 auth utils 中,如下所示
      ** lib / core / utils / auth_utils.dart **
class AuthUtils {
   static AuthUtils instance = AuthUtils ();

   // * Insert with your Zoomato API KEY
   Future getToken () async {
     return "<YOUR ZOOMATO API KEY>";
   }
}

GitHub

https://github.com/yusriltakeuchi/restofinder