Giter Site home page Giter Site logo

ciactiontest's People

Contributors

goyamazaki avatar

Watchers

 avatar

ciactiontest's Issues

move to detail page

// TODO move to detail page

            TextButton(
              child: const Text('call api'),
              onPressed: () {
                // TODO Call API
              },
            )
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        // TODO move to detail page
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),

add firstpage bloc

// TODO add firstpage bloc

import 'package:flutter/material.dart';
import 'package:hello_test/app_bar_mixin.dart';

// TODO add firstpage bloc

class FirstPage extends StatelessWidget with AppBarWidget {
  const FirstPage({Key? key}) : super(key: key);

Call API

// TODO Call API

            TextButton(
              child: const Text('call api'),
              onPressed: () {
                // TODO Call API
              },
            )
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        // TODO move to detail page
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),

add thridpage bloc

// TODO add thridpage bloc

import 'package:flutter/material.dart';

import 'app_bar_mixin.dart';

// TODO add thridpage bloc

class ThirdPage extends StatelessWidget with AppBarWidget {
  const ThirdPage({Key? key}) : super(key: key);

  @override
  AppBar? appBar() {
    return null;
  }

  @override
  Widget build(BuildContext context) => Container(
        color: Colors.red,
        alignment: Alignment.center,
        child: Row(
          mainAxisAlignment: MainAxisAlignment.spaceBetween,
          children: const [
            Icon(
              Icons.accessible,
              size: 48,
            ),
            Icon(
              Icons.play_arrow,
              size: 48,
            ),
          ],
        ),
      );
}

add secondpage bloc

// TODO add secondpage bloc

import 'package:flutter/material.dart';
import 'package:hello_test/app_bar_mixin.dart';

// TODO add secondpage bloc

class SecondPage extends StatelessWidget with AppBarWidget {
  final DateTime nowTime;
  const SecondPage({Key? key, required this.nowTime}) : super(key: key);

implement Firstpage

// TODO implement Firstpage

import 'package:flutter/material.dart';

// TODO implement Firstpage
class FirstPage extends StatelessWidget {
  const FirstPage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

Implement SecondPage

// TODO Implement SecondPage

import 'package:flutter/material.dart';

class SecondPage extends StatelessWidget {
  const SecondPage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container(
        // TODO Implement SecondPage
        );
  }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.