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 HttpService { | |
| Dio? _dio; | |
| final String baseUrl; | |
| final bool hasAuthorization; | |
| final bool isFormType; | |
| HttpService( | |
| {required this.baseUrl, | |
| this.hasAuthorization = false, | |
| this.isFormType = false}) { |
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'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
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 main | |
| import ( | |
| "database/sql" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" |
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'; | |
| class MoneyRange extends StatefulWidget { | |
| MoneyRange({Key? key}) : super(key: key); | |
| @override | |
| _MoneyRangeState createState() => _MoneyRangeState(); | |
| } | |
| class _MoneyRangeState extends State<MoneyRange> { |
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 'dart:async'; | |
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class SliderRangeWidget extends StatefulWidget { | |
| SliderRangeWidget({Key? key}) : super(key: key); | |
| @override | |
| _SliderRangeWidgetState createState() => _SliderRangeWidgetState(); |