Code Monkey home page Code Monkey logo
  @override
  Widget build(BuildContext context) {
    return GridView.count(
      primary: false,
      padding: const EdgeInsets.all(20),
      crossAxisSpacing: 10,
      mainAxisSpacing: 10,
      crossAxisCount: 2,
      children: <Widget>[
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
        Container(
          child: Card(
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [
                Stack(
                  alignment: Alignment.bottomCenter,
                  children: [
                    Image.asset(
                      "assetes/image1.jpg",
                      height: 100,
                      fit: BoxFit.fitWidth,
                    )
                  ],
                ),
                Padding(
                  padding: const EdgeInsets.only(left: 10, top: 10, right: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.start,
                    children: [
                      Text(
                        ("ms"),
                        style: TextStyle(color: Colors.black),
                      ),
                      Text(("suku"))
                    ],
                  ),
                )
              ],
            ),
          ),
        ),
      ],
    );
  }
- 👋 Hi, I’m @suku0001
- 👀 I’m interested in ...
- 🌱 I’m currently learning ...
- 💞️ I’m looking to collaborate on ...
- 📫 How to reach me ...

<!---
 is a ✨ special ✨ repository because its `README.md` (this file) appears on your GitHub profile.
You can click the Preview link to take a look at your changes.
--->

suku0001's Projects

2d-platformer-controller icon 2d-platformer-controller

Simple implementation of a 2D platformer character controller using raycasts for smooth and precise input and movement

flutter-filesharing-app icon flutter-filesharing-app

Bytes is a multifunctional tool app. By using bytes you can share files offline. Bytes - share anything with anyone. Share music, video, photos, documents, movies, etc. Transfer all type of files (Application, music, pdf, name, excel, zip, folder) Main Features 1.Wifi File Transfer 2.PDF Scanner.

flutter-music-player icon flutter-music-player

Flutter Music Player - First Open Source Flutter based material design music player with audio plugin to play local music files.

gridview icon gridview

import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( title: "Places app", theme: ThemeData(primaryColor: Colors.deepOrange), home: Scaffold( appBar: AppBar( leading: Text("sukuu"), ), body: HomeScreen(), ), ); } } class HomeScreen extends StatelessWidget { const HomeScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return GridView.count( primary: false, padding: const EdgeInsets.all(20), crossAxisSpacing: 10, mainAxisSpacing: 10, crossAxisCount: 2, children: <Widget>[ Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), Container( child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: [ Stack( alignment: Alignment.bottomCenter, children: [ Image.asset( "assetes/image1.jpg", height: 100, fit: BoxFit.fitWidth, ) ], ), Padding( padding: const EdgeInsets.only(left: 10, top: 10, right: 10), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( ("ms"), style: TextStyle(color: Colors.black), ), Text(("suku")) ], ), ) ], ), ), ), ], ); } }

suku icon suku

# Generated by pub # See https://dart.dev/tools/pub/glossary#lockfile packages: async: dependency: transitive description: name: async url: "https://pub.dartlang.org" source: hosted version: "2.5.0-nullsafety.3" boolean_selector: dependency: transitive description: name: boolean_selector url: "https://pub.dartlang.org" source: hosted version: "2.1.0-nullsafety.3" characters: dependency: transitive description: name: characters url: "https://pub.dartlang.org" source: hosted version: "1.1.0-nullsafety.5" charcode: dependency: transitive description: name: charcode url: "https://pub.dartlang.org" source: hosted version: "1.2.0-nullsafety.3" clock: dependency: transitive description: name: clock url: "https://pub.dartlang.org" source: hosted version: "1.1.0-nullsafety.3" cloud_firestore: dependency: "direct main" description: name: cloud_firestore url: "https://pub.dartlang.org" source: hosted version: "0.14.4" cloud_firestore_platform_interface: dependency: transitive description: name: cloud_firestore_platform_interface url: "https://pub.dartlang.org" source: hosted version: "2.2.1" cloud_firestore_web: dependency: transitive description: name: cloud_firestore_web url: "https://pub.dartlang.org" source: hosted version: "0.2.1+2" collection: dependency: transitive description: name: collection url: "https://pub.dartlang.org" source: hosted version: "1.15.0-nullsafety.5" convert: dependency: transitive description: name: convert url: "https://pub.dartlang.org" source: hosted version: "2.1.1" crypto: dependency: transitive description: name: crypto url: "https://pub.dartlang.org" source: hosted version: "2.1.5" cupertino_icons: dependency: "direct main" description: name: cupertino_icons url: "https://pub.dartlang.org" source: hosted version: "1.0.2" fake_async: dependency: transitive description: name: fake_async url: "https://pub.dartlang.org" source: hosted version: "1.2.0-nullsafety.3" firebase_auth: dependency: "direct main" description: name: firebase_auth url: "https://pub.dartlang.org" source: hosted version: "0.18.4+1" firebase_auth_platform_interface: dependency: transitive description: name: firebase_auth_platform_interface url: "https://pub.dartlang.org" source: hosted version: "2.1.4" firebase_auth_web: dependency: transitive description: name: firebase_auth_web url: "https://pub.dartlang.org" source: hosted version: "0.3.2+3" firebase_core: dependency: "direct main" description: name: firebase_core url: "https://pub.dartlang.org" source: hosted version: "0.5.3" firebase_core_platform_interface: dependency: transitive description: name: firebase_core_platform_interface url: "https://pub.dartlang.org" source: hosted version: "2.1.0" firebase_core_web: dependency: transitive description: name: firebase_core_web url: "https://pub.dartlang.org" source: hosted version: "0.2.1+1" firebase_storage: dependency: "direct main" description: name: firebase_storage url: "https://pub.dartlang.org" source: hosted version: "5.2.0" firebase_storage_platform_interface: dependency: transitive description: name: firebase_storage_platform_interface url: "https://pub.dartlang.org" source: hosted version: "1.0.2" firebase_storage_web: dependency: transitive description: name: firebase_storage_web url: "https://pub.dartlang.org" source: hosted version: "0.1.1+1" flutter: dependency: "direct main" description: flutter source: sdk version: "0.0.0" flutter_plugin_android_lifecycle: dependency: transitive description: name: flutter_plugin_android_lifecycle url: "https://pub.dartlang.org" source: hosted version: "1.0.11" flutter_test: dependency: "direct dev" description: flutter source: sdk version: "0.0.0" flutter_web_plugins: dependency: transitive description: flutter source: sdk version: "0.0.0" http: dependency: transitive description: name: http url: "https://pub.dartlang.org" source: hosted version: "0.12.2" http_parser: dependency: transitive description: name: http_parser url: "https://pub.dartlang.org" source: hosted version: "3.1.4" image_picker: dependency: "direct main" description: name: image_picker url: "https://pub.dartlang.org" source: hosted version: "0.6.7+17" image_picker_platform_interface: dependency: transitive description: name: image_picker_platform_interface url: "https://pub.dartlang.org" source: hosted version: "1.1.1" intl: dependency: transitive description: name: intl url: "https://pub.dartlang.org" source: hosted version: "0.16.1" js: dependency: transitive description: name: js url: "https://pub.dartlang.org" source: hosted version: "0.6.3-nullsafety.3" matcher: dependency: transitive description: name: matcher url: "https://pub.dartlang.org" source: hosted version: "0.12.10-nullsafety.3" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted version: "1.3.0-nullsafety.6" path: dependency: transitive description: name: path url: "https://pub.dartlang.org" source: hosted version: "1.8.0-nullsafety.3" pedantic: dependency: transitive description: name: pedantic url: "https://pub.dartlang.org" source: hosted version: "1.9.2" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface url: "https://pub.dartlang.org" source: hosted version: "1.0.3" quiver: dependency: transitive description: name: quiver url: "https://pub.dartlang.org" source: hosted version: "2.1.5" sky_engine: dependency: transitive description: flutter source: sdk version: "0.0.99" source_span: dependency: transitive description: name: source_span url: "https://pub.dartlang.org" source: hosted version: "1.8.0-nullsafety.4" stack_trace: dependency: transitive description: name: stack_trace url: "https://pub.dartlang.org" source: hosted version: "1.10.0-nullsafety.6" stream_channel: dependency: transitive description: name: stream_channel url: "https://pub.dartlang.org" source: hosted version: "2.1.0-nullsafety.3" string_scanner: dependency: transitive description: name: string_scanner url: "https://pub.dartlang.org" source: hosted version: "1.1.0-nullsafety.3" term_glyph: dependency: transitive description: name: term_glyph url: "https://pub.dartlang.org" source: hosted version: "1.2.0-nullsafety.3" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted version: "0.2.19-nullsafety.6" typed_data: dependency: transitive description: name: typed_data url: "https://pub.dartlang.org" source: hosted version: "1.3.0-nullsafety.5" vector_math: dependency: transitive description: name: vector_math url: "https://pub.dartlang.org" source: hosted version: "2.1.0-nullsafety.5" sdks: dart: ">=2.12.0-0.0 <3.0.0" flutter: ">=1.20.0 <2.0.0"

video_example icon video_example

Use the Flutter Video Player to play videos from your Assets, File System & from the Network in Flutter.

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.