PingViewWidget is a simple and customizable animated connecting button widget PingViewWidget

The source code is 100% Dart.

Motivation

I need some clean animated 3D view to show ping in my Flutter application.

Getting started

Installing

Add this to your package's pubspec.yaml file:

This library is posted in pub.dev

pubspec.yaml

dependencies:  
	ping_view_widget: ^1.0.0

Usage

After Importing this library, you can directly use this view in your Widget tree

import 'package:ping_view_widget/ping_view_widget.dart';
PingViewWidget(
  ispInformationText: TextSpan(
    style: TextStyle(
      color: Colors.black,
      fontSize: 12,
    ),
    children: <TextSpan>[
      TextSpan(
        text: "LOREM SERVER\n",
        style: TextStyle(
          color: Colors.black,
          fontWeight: FontWeight.w500,
        ),
      ),
      TextSpan(
          text: "São Paulo, Brasil",
          style: TextStyle(color: Colors.grey[600])),
    ],
  ),
  locationInformatinText: TextSpan(
    style: TextStyle(
        color: Colors.grey[600],
        fontSize: 10,
        fontWeight: FontWeight.w500),
    children: <TextSpan>[
      TextSpan(text: "IP Interno: 198.162.1.8\n"),
      TextSpan(text: "IP Externo: 198.162.1.7\n"),
      TextSpan(
        text: "Operadora: Jio",
      ),
    ],
  ),
  techInformationText: TextSpan(
    text: "LTE",
    style: TextStyle(color: Color(0xFF3ebdb8), fontSize: 11),
  ),
)

Customization

Depending on your view you may want to tweak the UI. For now you can these custom attributes

Screenshots

Simulator Screen Shot - iPhone 11 Pro - 2021-08-04 at 07 50 09
pingViewWidgetDemo

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add ping_view_widget

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):


dependencies:
  ping_view_widget: ^1.0.0

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:ping_view_widget/ping_view_widget.dart';

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:ping_view_widget/ping_view_widget.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Ping View Widget Demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Container(
          height: 240,
          child: PingViewWidget(
            ispInformationText: TextSpan(
              style: TextStyle(
                color: Colors.black,
                fontSize: 12,
              ),
              children: <TextSpan>[
                TextSpan(
                  text: "LOREM SERVER\n",
                  style: TextStyle(
                    color: Colors.black,
                    fontWeight: FontWeight.w500,
                  ),
                ),
                TextSpan(
                    text: "São Paulo, Brasil",
                    style: TextStyle(color: Colors.grey[600])),
              ],
            ),
            locationInformatinText: TextSpan(
              style: TextStyle(
                  color: Colors.grey[600],
                  fontSize: 10,
                  fontWeight: FontWeight.w500),
              children: <TextSpan>[
                TextSpan(text: "IP Interno: 198.162.1.8\n"),
                TextSpan(text: "IP Externo: 198.162.1.7\n"),
                TextSpan(
                  text: "Operadora: Jio",
                ),
              ],
            ),
            techInformationText: TextSpan(
              text: "LTE",
              style: TextStyle(color: Color(0xFF3ebdb8), fontSize: 11),
            ),
          ),
        ),
      ),
    );
  }
}

#flutter #dart #mobile-apps #mobile 

Animated Round Button with Flutter
1.45 GEEK