[MariaDB] 컬럼 이름 변경
alter table 테이블이름 rename column 컬럼이름 to 새로운컬럼이름 참고 ALTER TABLE Modify a table's definition. mariadb.com
alter table 테이블이름 rename column 컬럼이름 to 새로운컬럼이름 참고 ALTER TABLE Modify a table's definition. mariadb.com
Container위젯의 decoration에서 BoxDecoration을 통해 원하는대로 꾸민 뒤 Row나 Column위젯을 child로 넣으면 된다. Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(10), color: Colors.lightBlue, ), child: ... ) Row나 Column의 자식 위젯의 constraints 문제로 인해 RenderBox was not laid out에러가 발생할 경우 Container에 width와 height를 지정해주거나 Expanded와 같은 크기를 지정해주는 위젯으로 감싸 해결할 수 있다. 전체 코드 참고 How to make the background of Text..
Column위젯의 mainAxisSize의 값으로 MainAxisSize.min을 줘서 해결 참고 Flutter - Auto size AlertDialog to fit list content I need to load list cities dynamically from rest webservice and let user choice one city from alert dialog. My code: createDialog() { fetchCities().then((response) { showDialog( ... stackoverflow.com
문제점 내 경우엔 Row위젯 안에 TextField위젯을 넣었을 때 발생했다. TextField위젯이 가지는 InputDecoration으로 인해 발생한 에러이다. InputDecoration의 선언부에도 주석으로 써 있는데 가로 크기가 무한이면 안된다고 한다. Row위젯과 같이 width 크기를 제한하지 않는 위젯이 상위에 있으면 에러가 발생한다. Column위젯 안에 ListView위젯을 사용할 때도 발생한다. 해결방법 TextField위젯을 Expanded위젯으로 감싸서 width크기를 제한한다. 만약 ListView위젯을 Column위젯 안에 넣었을 때 발생했다면 ListView를 Expanded위젯으로 감싸면 된다. TextField 참고 How to solve ' RenderBox was no..