Thursday, March 21, 2019
Join 2 table 3 table 4 table pada codeigniter
SELECT* FROM tbl_login JOIN tbl_siswa ON tbl_login.id_user = tbl_siswa.id JOIN tbl_pelajaran ON tbl_login.id_pelajaran = tbl_pelajaran.id WHERE tbl_login.id_user
Tuesday, March 19, 2019
Membuat Row Dal Column Pada flutter part 2
import 'package:flutter/material.dart'; void main(){ runApp(new MaterialApp( title: "lihatcode.blogspot.com", home: new HalamanSatu(), ));} class HalamanSatu extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( backgroundColor: Colors.yellow[200], appBar: new AppBar( backgroundColor: Colors.red[800], leading: new Icon(Icons.home), title: new Center( child: new Text("Coding Days"), ), actions: <Widget>[ new Icon(Icons.search) ], ), body: new Container( child: new Column( children: <Widget>[ new Icon( Icons.local_pizza, size: 70.0, color: Colors.red, ), new Row( children: <Widget>[ new Icon( Icons.donut_large, size: 70.0, color: Colors.orange, ), new Icon( Icons.donut_large, size: 70.0, color: Colors.orange, ), new Icon( Icons.donut_large, size: 70.0, color: Colors.orange, ) ], ), new Icon( Icons.donut_large, size: 70.0, color: Colors.red, ) ], ) ), ); } }
Monday, March 18, 2019
Membuat Aplikasi Flutter Dengan Mudah
import 'package:flutter/material.dart';//function yang dijalankanvoid main(){ // sedang memanggil widget "new" runApp(new MaterialApp( home: new Hallo(), ));} class Hallo extends StatelessWidget { @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( body: new Center( child: new Text("Hello Fharhan"), ) ); } }
Subscribe to:
Posts (Atom)
test
import 'dart:async' ; import 'package:flutter/material.dart' ; class MyBeginner extends StatefulWidget { var...
-
1.Pertama buat layout tambahan untuk membuat input di satu halaman pada activity_main.xml Seperti berikut: < LinearLayout ...
-
catatan php ambil data (fetch) dari table dari object result mysqli_fetch_row ->mengembalikan array numerik mysqli_fetch_assoc ->me...
-
https://youtu.be/VLObfzQ9PGQ