인프런 커뮤니티 질문&답변

작성자 없음

작성자 정보가 삭제된 글입니다.

Flutter 초입문 왕초보편

안드로이드 앱 핑테스트

작성

·

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

답변 1

0

오준석님의 프로필 이미지
오준석
지식공유자

해당 라이브러리를 사용해 본 적이 없어서 도움을 드릴 수가 없겠네요.

 

작성자 없음

작성자 정보가 삭제된 글입니다.

질문하기