작성자 없음
작성자 정보가 삭제된 글입니다.
작성
·
233
·
수정됨
0
안녕하세요.
강의를 듣고 개인적으로 앱을 제작하고 있는데요.
핑 테스트하는 모바일앱입니다.
dart.dev에서 ping_dart라는 패키지를 이용해서 제작하고 있는데
오류가 발생하고 있습니다.
혹시 도움을 받을 수 있을까요?
cmd에서 구글로 핑은 잘 나갑니다..
import 'package:flutter/material.dart';
import 'package:dart_ping/dart_ping.dart';
class Screen2WebList extends StatelessWidget {
const Screen2WebList({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("핑테스트", textAlign: TextAlign.left,),
titleTextStyle: const TextStyle(
color: Colors.white,
fontSize: 20,
),
backgroundColor: Colors.blue,
),
body: Column(
children: [
Container(
height: 100,
width: 100,
alignment: Alignment.center,
child: TextButton(onPressed: () {
startPing();
}, child: Text("CLICK"),
)
),
],
),
);
}
startPing() async {
final ping = Ping('google.com', count: 5);
ping.stream.listen((event) {
print(event.error);
});
}
}
오류메세지
I/flutter (23733): requestTimedOut
I/flutter (23733): requestTimedOut
I/flutter (23733): requestTimedOut
I/flutter (23733): requestTimedOut
I/flutter (23733): null