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
| package id.yukngoding.explore_mapbox.type.deviceLoc | |
| import android.annotation.SuppressLint | |
| import android.os.Bundle | |
| import android.util.Log | |
| import android.widget.Toast | |
| import androidx.appcompat.app.AppCompatActivity | |
| import com.mapbox.android.core.location.LocationEngine | |
| import com.mapbox.android.core.location.LocationEngineProvider | |
| import com.mapbox.android.core.location.LocationEngineRequest |
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
| class MahasiswaModel { | |
| MahasiswaModel( | |
| {this.nim, this.name, this.department, this.sks, this.address}); | |
| String nim; | |
| String name; | |
| String department; | |
| int sks; | |
| String address; | |
| } |
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
| import 'package:flutter/material.dart'; | |
| import 'package:liquid_pull_to_refresh/liquid_pull_to_refresh.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| final GlobalKey<LiquidPullToRefreshState> _refreshIndicatorKey = | |
| GlobalKey<LiquidPullToRefreshState>(); |
OlderNewer