This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create new a database | |
-- Replace 'hello_db' with any name of your choice | |
CREATE DATABASE hello_db; | |
-- | |
-- Use the created database | |
-- Replace 'hello_db' with the same name your used to create the database | |
USE hello_db; | |
-- categories table |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// This example uses google_maps_flutter: ^0.5.21+8 | |
/// For guide on how to setup google maps flutter, visit | |
/// https://pub.dev/packages/google_maps_flutter | |
/// Preview of this example is available at https://kutt.it/2VlCi9 | |
import 'dart:async'; | |
import 'dart:math'; | |
import 'dart:ui'; | |
import 'package:flutter/material.dart'; |