2022/5/31/Dart/Effective Dart: Design

 

Effective Dart: Design

Here are some guidelines for writing consistent, usable APIs for libraries.

一貫性のある有用なAPI、ライブラリを書くためのガイドラインです。


Names

Naming is an important part of writing readable, maintainable code. The following best practices can help you achieve that goal.

読みやすく、保守性の高いコードを書くために命名規則は大切です。


DO use

2022/5/30/Dart/Effective Dart/UsagePart2

 

<<Part1へ戻る


Functions

In Dart, even functions are objects. Here are some best practices involving functions.

Dartでは関数もオブジェクトです。関数に関するベストプラクティスを見て行きましょう。


DO use a function declaration to bind a function to a name.

Modern languages have realized how useful local nested functions and closures …

2022/5/30/Dart/Effective Dart/Styleの訳

 

A surprisingly important part of good code is good style.

良いコードのために意外と重要なのが、良いスタイルです。

 

Consistent naming, ordering, and formatting helps code that isthe same look the same.

名前、順序、書式を統一することで、同じコードが同じように見えるようになります。

 

It takes advantage of the powerful pattern-matching hardware most of us …

2022/5/25/Flutter/translationOfLICENSE

 

Copyright 2014 The Flutter Authors. All rights reserved.

Copyright 2014 TheFlutterAuthors。 全著作権所有。

 

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

次の条件が満たされている場合、変更の有無にかかわらず、ソース形式およびバイナリ形式での再配布および使用が許可されます。

 

* Redistributions of …

2022/5/24/Dart/Intro to Dart for Java Developersの訳

 

Intro to Dart for Java Developers

1. Introduction

Dart is the programming language for Flutter, Google’s UI toolkit for building beautiful, natively compiled mobile, web, and desktop apps from a single codebase.

Dartは、単一のコードベースから美しいネイティブコンパイルのモバイル、ウェブ、デスクトップアプリケーションを構築するためのGoogleのUIツールキットであるFlutterのためのプログラミング言語です。

 

This codelab introduces you to …