Skip to content

Instantly share code, notes, and snippets.

@Origogi
Last active June 29, 2020 07:59
Show Gist options
  • Save Origogi/0b72f2e9d81b9f0444bbd1b12347048f to your computer and use it in GitHub Desktop.
Save Origogi/0b72f2e9d81b9f0444bbd1b12347048f to your computer and use it in GitHub Desktop.
flutter list tile sample
import 'package:flutter/material.dart';
main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: Demo(),
),
);
}
class Demo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Test'),
),
body: Column(
children : [
ListTile(
leading: Text("1."),
title: Text('가입 시 기입하신 성함, 생년월일이 같아야 합니다.')
),
ListTile(
leading: Text("2."),
title: Text('촬영 시 개인정보 보호를 위해여 주민 등록 번호 뒷자리는 손으로 가려주세요.')
),
]
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment