center_webview 0.0.1 copy "center_webview: ^0.0.1" to clipboard
center_webview: ^0.0.1 copied to clipboard

A new Flutter package for web. Keeps your contents in the center of the screen and adjusts to the responsive change in size.

example/example.dart

import 'package:centerwebview/center_webview.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Home(),
    );
  }
}

class Home extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
        height: 50.0,
        color: Color(0xFF2D3133),
        child: CenterWebView(
          child: Row(
            mainAxisAlignment: MainAxisAlignment.spaceBetween,
            children: [
              DesktopNavigationItem(
                title: 'Menu',
              ),
              DesktopNavigationItem(
                title: 'Menu',
              ),
              DesktopNavigationItem(
                title: 'Menu',
              ),
              DesktopNavigationItem(
                title: 'Menu',
              ),
            ],
          ),
        ),
      ),
    );
  }
}

class DesktopNavigationItem extends StatefulWidget {
  final String title;

  const DesktopNavigationItem({
    Key key,
    @required this.title,
  }) : super(key: key);

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

class _DesktopNavigationItemState extends State<DesktopNavigationItem> {
  @override
  Widget build(BuildContext context) {
    return Padding(
      padding: EdgeInsets.only(top: 15.0, bottom: 15.0),
      child: Text(
        widget.title,
        style: TextStyle(
          fontSize: 15,
          color: Color(0xFF0CBDB3),
        ),
      ),
    );
  }
}
6
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package for web. Keeps your contents in the center of the screen and adjusts to the responsive change in size.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on center_webview