Posts Tagged: coding

Coding Flutter
Flutter: Youtube like App Bar
November 19, 2019
0
,
pubspec.yaml flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true assets: - assets/images/youtube_icon.png - assets/images/youtube_action1.png - assets/images/youtube_action2.png - assets/images/youtube_action3.png - assets/images/profile_pic.png lib/main.dart import 'package:flutter/material.dart'; void main() { runApp(YoutubeAppbar()); } class YoutubeAppbar extends […]
Coding Flutter
Flutter: Flex
November 19, 2019
0
, , ,
Code pubspec.yaml flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true assets: - images/pic1.jpg - images/pic2.jpg - images/pic3.jpg lib/main.dart import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart' show debugPaintSizeEnabled; void main() { debugPaintSizeEnabled = false; // […]