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:flutter/services.dart'; | |
class TwoFactorVerificationScreen extends StatefulWidget { | |
@override | |
_TwoFactorVerificationScreenState createState() => | |
_TwoFactorVerificationScreenState(); | |
} | |
class _TwoFactorVerificationScreenState |
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
GET /profile/status HTTP/1.1 | |
Host: appdev.astrasend.ru | |
Connection: keep-alive | |
Authorization: <redact> | |
ASTRASEND_DEVICE_ID: 52c049f0f04677a16f123dd7a4f4461f2dd3ce42ef77a8f051c14d2006295517 | |
User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1 | |
Accept: */* | |
Origin: http://localhost:8080 | |
Sec-Fetch-Site: cross-site | |
Sec-Fetch-Mode: cors |
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
OPTIONS /profile/status HTTP/1.1 | |
Host: appdev.astrasend.ru | |
Connection: keep-alive | |
Accept: */* | |
Access-Control-Request-Method: GET | |
Access-Control-Request-Headers: astrasend_device_id,authorization | |
Origin: http://localhost:8080 | |
User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1 | |
Sec-Fetch-Mode: cors | |
Sec-Fetch-Site: cross-site |
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
GET /api/main_screen HTTP/1.1 | |
Host: appdev.astrasend.ru | |
Connection: keep-alive | |
Pragma: no-cache | |
Cache-Control: no-cache | |
Authorization: <redact> | |
ASTRASEND_DEVICE_ID: 078fcdf410b5e1d234f45a187f012a8ddf21e6156787fe9a552418bff551102c | |
User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1 | |
Accept: */* | |
Origin: http://localhost:8080 |
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:math'; | |
import 'package:flutter/material.dart'; | |
/// Задание | |
/// 1) Указать замеченные проблемы в коде и предложить решения. | |
/// 2) Починить работать смену цвета элементов списка. | |
void main() { | |
runApp(MyApp()); |